You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
601 B
22 lines
601 B
# ------------------------------------------------------------------------------ |
|
# 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
|
|
|