mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 16:37:34 +00:00
c73d165165
darcs-hash:20061214182313-ac50b-a912bcc0fac6e1d78f116e19f31f1c50ffc409cb.gz
9 lines
159 B
Fish
9 lines
159 B
Fish
function prevd-or-backward-word
|
|
if test -z (commandline)
|
|
prevd
|
|
commandline -f repaint
|
|
else
|
|
commandline -f backward-word
|
|
end
|
|
end
|
|
|