-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing plugins/available/sudo.plugin.bash
- Loading branch information
Showing
2 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
# shellcheck shell=bash | ||
cite about-plugin | ||
about-plugin 'Toggle sudo at the beginning of the current or the previous command by hitting the ESC key twice' | ||
|
||
function sudo-command-line() { | ||
about "toggle sudo at the beginning of the current or the previous command by hitting the ESC key twice" | ||
group "sudo" | ||
about "toggle sudo at the beginning of the current or the previous command by hitting the ESC key twice" | ||
group "sudo" | ||
|
||
[[ ${#READLINE_LINE} -eq 0 ]] && READLINE_LINE=$(fc -l -n -1 | xargs) | ||
if [[ $READLINE_LINE == sudo\ * ]]; then | ||
READLINE_LINE="${READLINE_LINE#sudo }" | ||
else | ||
READLINE_LINE="sudo $READLINE_LINE" | ||
fi | ||
READLINE_POINT=${#READLINE_LINE} | ||
[[ ${#READLINE_LINE} -eq 0 ]] && READLINE_LINE=$(fc -l -n -1 | xargs) | ||
if [[ $READLINE_LINE == sudo\ * ]]; then | ||
READLINE_LINE="${READLINE_LINE#sudo }" | ||
else | ||
READLINE_LINE="sudo $READLINE_LINE" | ||
fi | ||
READLINE_POINT=${#READLINE_LINE} | ||
} | ||
|
||
# Define shortcut keys: [Esc] [Esc] | ||
|
||
# Readline library requires bash version 4 or later | ||
if [ "${BASH_VERSINFO}" -ge 4 ]; then | ||
bind -x '"\e\e": sudo-command-line' | ||
if [ "${BASH_VERSINFO[0]}" -ge 4 ]; then | ||
bind -x '"\e\e": sudo-command-line' | ||
fi |