aboutsummaryrefslogtreecommitdiff
path: root/modules/base/fish/functions/fish_user_key_bindings.fish
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 22:10:04 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 22:10:04 +0000
commitf700d4b0404169f7e4beab940890a53de4cb79ba (patch)
tree9b0286f1dbb5515eafd178040282db60e0d26054 /modules/base/fish/functions/fish_user_key_bindings.fish
parentc04d9504fa2ae8f447ef05a1e7ddb3b21ed06af9 (diff)
Adding nix and base modules
Diffstat (limited to 'modules/base/fish/functions/fish_user_key_bindings.fish')
-rw-r--r--modules/base/fish/functions/fish_user_key_bindings.fish6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/base/fish/functions/fish_user_key_bindings.fish b/modules/base/fish/functions/fish_user_key_bindings.fish
new file mode 100644
index 00000000000..9799d461120
--- /dev/null
+++ b/modules/base/fish/functions/fish_user_key_bindings.fish
@@ -0,0 +1,6 @@
+function fish_user_key_bindings
+ # Make `!!` and `!$` work
+ bind ! __history_previous_command
+ bind '$' __history_previous_command_arguments
+ bind \cr __fancy_history
+end