parent
bc3cadf5c8
commit
744f3654e2
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
# Description |
||||||
|
# ----------- |
||||||
|
# |
||||||
|
# sudo will be inserted before the command |
||||||
|
# |
||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
# Authors |
||||||
|
# ------- |
||||||
|
# |
||||||
|
# * Dongweiming <ciici123@gmail.com> |
||||||
|
# |
||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
|
||||||
|
sudo-command-line() { |
||||||
|
[[ -z $BUFFER ]] && zle up-history |
||||||
|
[[ $BUFFER != sudo\ * ]] && BUFFER="sudo $BUFFER" |
||||||
|
zle end-of-line |
||||||
|
} |
||||||
|
zle -N sudo-command-line |
||||||
|
# Defined shortcut keys: [Esc] [Esc] |
||||||
|
bindkey "\e\e" sudo-command-line |
||||||
Loading…
Reference in new issue