fish-shell/share/functions/fish_vi_mode.fish
Fabian Homborg ba5a22e2ce Deprecate fish_vi_mode
This was never mentioned in the documentation as the way to switch to
vi-mode, and now does nothing of value anymore.
2016-04-26 15:21:15 +02:00

5 lines
182 B
Fish

function fish_vi_mode
echo "This function is deprecated. Please call fish_vi_key_bindings directly" >&2
# Turn on vi keybindings
set -g fish_key_bindings fish_vi_key_bindings
end