mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-09 08:41:02 +08: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
|
|
|