2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-16 06:54:03 +00:00
fish-shell/share/functions/prevd-or-backward-word.fish

9 lines
159 B
Fish

function prevd-or-backward-word
if test -z (commandline)
prevd
commandline -f repaint
else
commandline -f backward-word
end
end