2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-01 06:43:39 +00:00
fish-shell/share/functions/nextd-or-forward-word.fish

9 lines
136 B
Fish

function nextd-or-forward-word
if test -z (commandline)
nextd
commandline -f repaint
else
commandline -f forward-word
end
end