From e06d6ce4a2ed7982951b0f603c03c2d586cef6eb Mon Sep 17 00:00:00 2001 From: Nate Soares Date: Thu, 18 Oct 2012 22:38:08 -0700 Subject: [PATCH] Revive support for fish_user_keybindings This is undocumented and here to preserve backwards compatibility. --- share/functions/__fish_config_interactive.fish | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/functions/__fish_config_interactive.fish b/share/functions/__fish_config_interactive.fish index 4ff4a27b9..03f8583b7 100644 --- a/share/functions/__fish_config_interactive.fish +++ b/share/functions/__fish_config_interactive.fish @@ -207,6 +207,9 @@ function __fish_config_interactive -d "Initializations that should be performed #Load user key bindings if they are defined if functions --query fish_user_key_bindings > /dev/null fish_user_key_bindings + # Deprecated. Retained for backwards compatibility reasons. + else if functions --query fish_user_keybindings > /dev/null + fish_user_keybindings end else eval $fish_key_bindings ^/dev/null