aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions
diff options
context:
space:
mode:
Diffstat (limited to 'share/functions')
-rw-r--r--share/functions/fish_vi_mode.fish5
1 files changed, 3 insertions, 2 deletions
diff --git a/share/functions/fish_vi_mode.fish b/share/functions/fish_vi_mode.fish
index 8c89a53e..29ddeb6c 100644
--- a/share/functions/fish_vi_mode.fish
+++ b/share/functions/fish_vi_mode.fish
@@ -1,4 +1,5 @@
function fish_vi_mode
- # Turn on vi keybindings
- set -g fish_key_bindings fish_vi_key_bindings
+ 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