mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
sudo: maintain cursor position
I.e. when prefixing the current command-line with 'sudo ' maintain the current cursor position instead of jumping to the end of the line.
This commit is contained in:
parent
96e4e5dd03
commit
1e7c6743a7
1 changed files with 2 additions and 3 deletions
|
@ -13,9 +13,8 @@
|
|||
# ------------------------------------------------------------------------------
|
||||
|
||||
sudo-command-line() {
|
||||
[[ -z $BUFFER ]] && zle up-history
|
||||
[[ $BUFFER != sudo\ * ]] && BUFFER="sudo $BUFFER"
|
||||
zle end-of-line
|
||||
[[ -z $BUFFER ]] && zle up-history
|
||||
[[ $BUFFER != sudo\ * ]] && LBUFFER="sudo $LBUFFER"
|
||||
}
|
||||
zle -N sudo-command-line
|
||||
# Defined shortcut keys: [Esc] [Esc]
|
||||
|
|
Loading…
Reference in a new issue