8 lines
142 B
Fish
8 lines
142 B
Fish
function sudo_rep
|
|
set -l cmd (commandline)
|
|
if test -z "$cmd"; set cmd $history[1]; end
|
|
commandline -r "sudo $cmd"
|
|
end
|
|
|
|
bind \es 'sudo_rep'
|