Files
oh-my-bash/plugins/sudo/sudo.plugin.sh
2023-04-09 00:04:00 +09:00

12 lines
287 B
Bash

#! bash oh-my-bash.module
function _omb_plugin_sudo_add_sudo {
if [[ -z $READLINE_LINE ]]; then
READLINE_LINE="$(fc -ln -1 | command sed 's/^[[:space:]]\{1,\}//')"
fi
READLINE_LINE="sudo $READLINE_LINE"
((READLINE_POINT += 5))
}
bind -x '"\e\e": _omb_plugin_sudo_add_sudo'