Files
Rabbit-dots/fish/.config/fish/functions/sudo_rep.fish
2026-02-28 01:34:33 +03:00

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'