2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-19 16:34:24 +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