2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-19 07:28:59 +00:00
fish-shell/share/functions/nextd-or-forward-word.fish

9 lines
126 B
Fish
Raw Normal View History

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