1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00
dotfiles/zsh/plugins/sudo.zsh

21 lines
685 B
Bash
Raw Normal View History

2017-11-16 00:24:10 +00:00
# Source: https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/sudo/sudo.plugin.zsh
sudo-command-line() {
[[ -z $BUFFER ]] && zle up-history
if [[ $BUFFER == sudo\ * ]]; then
LBUFFER="${LBUFFER#sudo }"
elif [[ $BUFFER == $EDITOR\ * ]] || [[ $BUFFER == vi\ * ]] || [[ $BUFFER == vim\ * ]]; then
LBUFFER="s$LBUFFER"
elif [[ $BUFFER == sudoedit\ * ]] || [[ $BUFFER == svi\ * ]]|| [[ $BUFFER == svim\ * ]]; then
2017-11-16 00:24:10 +00:00
LBUFFER="${LBUFFER#sudoedit }"
LBUFFER="${LBUFFER#s}"
2017-11-16 00:24:10 +00:00
else
LBUFFER="sudo $LBUFFER"
fi
_zsh_highlight
2017-11-16 00:24:10 +00:00
}
zle -N sudo-command-line
# Defined shortcut keys: [Esc] [Esc]
bindkey "\e\e" sudo-command-line