mirror of
https://gitlab.com/linuxstuff/dotfiles.git
synced 2026-08-18 14:19:29 +02:00
34 lines
999 B
Bash
Executable File
34 lines
999 B
Bash
Executable File
# ------------------------------------------------------------------------------
|
|
# Description
|
|
# -----------
|
|
#
|
|
# sudo or sudoedit will be inserted before the command
|
|
#
|
|
# ------------------------------------------------------------------------------
|
|
# Authors
|
|
# -------
|
|
#
|
|
# * Dongweiming <ciici123@gmail.com>
|
|
#
|
|
# ------------------------------------------------------------------------------
|
|
|
|
sudo-command-line() {
|
|
[[ -z $BUFFER ]] && zle up-history
|
|
if [[ $BUFFER == sudo\ * ]]; then
|
|
LBUFFER="${LBUFFER#sudo }"
|
|
elif [[ $BUFFER == $EDITOR\ * ]]; then
|
|
LBUFFER="${LBUFFER#$EDITOR }"
|
|
LBUFFER="sudoedit $LBUFFER"
|
|
elif [[ $BUFFER == sudoedit\ * ]]; then
|
|
LBUFFER="${LBUFFER#sudoedit }"
|
|
LBUFFER="$EDITOR $LBUFFER"
|
|
else
|
|
LBUFFER="sudo $LBUFFER"
|
|
fi
|
|
}
|
|
zle -N sudo-command-line
|
|
# Defined shortcut keys: [Esc] [Esc]
|
|
bindkey -M emacs '\e\e' sudo-command-line
|
|
bindkey -M vicmd '\e\e' sudo-command-line
|
|
bindkey -M viins '\e\e' sudo-command-line
|