mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 17:28:19 +00:00
9 lines
148 B
Fish
9 lines
148 B
Fish
|
function prevd-or-backward-word --key-binding
|
||
|
if test -z (commandline)
|
||
|
prevd
|
||
|
else
|
||
|
commandline -f backward-word
|
||
|
end
|
||
|
end
|
||
|
|