mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-01 15:48:45 +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
|
||
|
|