mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 07:18:31 +08:00
10 lines
159 B
Fish
10 lines
159 B
Fish
function prevd-or-backward-word
|
|
if test -z (commandline)
|
|
prevd
|
|
commandline -f repaint
|
|
else
|
|
commandline -f backward-word
|
|
end
|
|
end
|
|
|