[Fix #28] Add a widget to insert sudo

This commit is contained in:
Sorin Ionescu 2012-03-18 19:20:00 -04:00
parent 09837b259a
commit 9f8b41aaec

View File

@ -115,6 +115,15 @@ function expand-or-complete-prefix-with-indicator() {
}
zle -N expand-or-complete-prefix-with-indicator
# Inserts 'sudo ' at the beginning of the line.
function prepend-sudo() {
if [[ "$BUFFER" != su(do|)\ * ]]; then
BUFFER="sudo $BUFFER"
(( CURSOR += 5 ))
fi
}
zle -N prepend-sudo
zstyle -s ':omz:editor' keymap 'keymap'
if [[ "$keymap" == (emacs|) ]]; then
# Use Emacs key bindings.
@ -305,5 +314,9 @@ fi
for key in "$keyinfo[Control]Q" "$keyinfo[Escape]"{q,Q}; \
bindkey "$key" push-line-or-edit
# Insert 'sudo ' at the beginning of the line.
[[ -n "$keyinfo[Control]" ]] && \
bindkey "$keyinfo[Control]X$keyinfo[Control]S" prepend-sudo
unset key