2013-07-04 11:18:52 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Description
|
|
|
|
# -----------
|
|
|
|
#
|
2016-08-15 00:45:00 +00:00
|
|
|
# sudo or sudoedit will be inserted before the command
|
2013-07-04 11:18:52 +00:00
|
|
|
#
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Authors
|
|
|
|
# -------
|
|
|
|
#
|
|
|
|
# * Dongweiming <ciici123@gmail.com>
|
2020-11-11 20:25:32 +00:00
|
|
|
# * Subhaditya Nath <github.com/subnut>
|
|
|
|
# * Marc Cornellà <github.com/mcornella>
|
2013-07-04 11:18:52 +00:00
|
|
|
#
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2020-11-11 20:25:32 +00:00
|
|
|
__sudo-replace-buffer() {
|
2021-08-19 15:20:52 +00:00
|
|
|
local old=$1 new=$2 space=${2:+ }
|
|
|
|
if [[ ${#LBUFFER} -le ${#old} ]]; then
|
|
|
|
RBUFFER="${space}${BUFFER#$old }"
|
|
|
|
LBUFFER="${new}"
|
|
|
|
else
|
|
|
|
LBUFFER="${new}${space}${LBUFFER#$old }"
|
|
|
|
fi
|
2020-11-11 20:25:32 +00:00
|
|
|
}
|
|
|
|
|
2013-07-04 11:18:52 +00:00
|
|
|
sudo-command-line() {
|
2021-08-19 15:20:52 +00:00
|
|
|
[[ -z $BUFFER ]] && LBUFFER="$(fc -ln -1)"
|
2020-08-23 20:58:08 +00:00
|
|
|
|
2021-08-19 15:20:52 +00:00
|
|
|
# Save beginning space
|
|
|
|
local WHITESPACE=""
|
|
|
|
if [[ ${LBUFFER:0:1} = " " ]]; then
|
|
|
|
WHITESPACE=" "
|
|
|
|
LBUFFER="${LBUFFER:1}"
|
|
|
|
fi
|
2020-08-23 20:58:08 +00:00
|
|
|
|
2021-08-19 15:20:52 +00:00
|
|
|
# Get the first part of the typed command and check if it's an alias to $EDITOR
|
|
|
|
# If so, locally change $EDITOR to the alias so that it matches below
|
|
|
|
if [[ -n "$EDITOR" ]]; then
|
|
|
|
local cmd="${${(Az)BUFFER}[1]}"
|
|
|
|
if [[ "${aliases[$cmd]} " = (\$EDITOR|$EDITOR)\ * ]]; then
|
|
|
|
local EDITOR="$cmd"
|
2020-11-11 20:25:32 +00:00
|
|
|
fi
|
2021-08-19 15:20:52 +00:00
|
|
|
fi
|
2020-11-11 20:25:32 +00:00
|
|
|
|
2021-08-19 15:20:52 +00:00
|
|
|
if [[ -n $EDITOR && $BUFFER = $EDITOR\ * ]]; then
|
|
|
|
__sudo-replace-buffer "$EDITOR" "sudoedit"
|
|
|
|
elif [[ -n $EDITOR && $BUFFER = \$EDITOR\ * ]]; then
|
|
|
|
__sudo-replace-buffer "\$EDITOR" "sudoedit"
|
|
|
|
elif [[ $BUFFER = sudoedit\ * ]]; then
|
|
|
|
__sudo-replace-buffer "sudoedit" "$EDITOR"
|
|
|
|
elif [[ $BUFFER = sudo\ * ]]; then
|
|
|
|
__sudo-replace-buffer "sudo" ""
|
|
|
|
else
|
|
|
|
LBUFFER="sudo $LBUFFER"
|
|
|
|
fi
|
2020-08-23 20:58:08 +00:00
|
|
|
|
2021-08-19 15:20:52 +00:00
|
|
|
# Preserve beginning space
|
|
|
|
LBUFFER="${WHITESPACE}${LBUFFER}"
|
2013-07-04 11:18:52 +00:00
|
|
|
}
|
2020-11-11 20:25:32 +00:00
|
|
|
|
2013-07-04 11:18:52 +00:00
|
|
|
zle -N sudo-command-line
|
2020-11-11 20:25:32 +00:00
|
|
|
|
2013-07-04 11:18:52 +00:00
|
|
|
# Defined shortcut keys: [Esc] [Esc]
|
2019-08-19 10:14:22 +00:00
|
|
|
bindkey -M emacs '\e\e' sudo-command-line
|
|
|
|
bindkey -M vicmd '\e\e' sudo-command-line
|
|
|
|
bindkey -M viins '\e\e' sudo-command-line
|