mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 02:27:28 +08:00
47b9993469
Fixes #2333
11 lines
181 B
Fish
11 lines
181 B
Fish
function prevd-or-backward-word
|
|
set -l cmd (commandline)
|
|
if test -z "$cmd"
|
|
prevd
|
|
commandline -f repaint
|
|
else
|
|
commandline -f backward-word
|
|
end
|
|
end
|
|
|