mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
3e24ae80b3
Also, correct the Vi mode default escape timeout. I intended it to be 100 ms in my previous change but it ended up 10 ms which is far too short. A 10 ms delay will continue to cause problems for people running fish inside `screen`, `tmux`, or over high latency connections.
6 lines
222 B
Fish
6 lines
222 B
Fish
function fish_vi_mode
|
|
echo 'The `fish_vi_mode` function is deprecated.' >&2
|
|
echo 'Please switch to calling `fish_vi_key_bindings`.' >&2
|
|
# Turn on vi keybindings
|
|
set -g fish_key_bindings fish_vi_key_bindings
|
|
end
|