Merge pull request #1947 from dongweiming/add-sudo

Add sudo plugin
This commit is contained in:
Robby Russell 2013-12-02 23:40:12 -08:00
commit 573830ba37

22
plugins/sudo/sudo.zsh Normal file
View File

@ -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