aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc
diff options
context:
space:
mode:
authorGravatar liljencrantz <liljencrantz@gmail.com>2007-09-26 02:14:47 +1000
committerGravatar liljencrantz <liljencrantz@gmail.com>2007-09-26 02:14:47 +1000
commitcf8e746d0c04aec16df8e69d2987c785cb510d46 (patch)
treef20053b4e7370efc11e6c8277e2a220b7a386e69 /etc
parentaf9c2067e1fecb10ab7540e7f7682211448b81c0 (diff)
First stab at dropping all support for readlines inputrc files and instead using an internal system for performing keybinding.
darcs-hash:20070925161447-75c98-1feaef88a4b518badb7879f598f06ab650a8f93b.gz
Diffstat (limited to 'etc')
-rw-r--r--etc/fish_inputrc28
1 files changed, 0 insertions, 28 deletions
diff --git a/etc/fish_inputrc b/etc/fish_inputrc
deleted file mode 100644
index 981b0abe..00000000
--- a/etc/fish_inputrc
+++ /dev/null
@@ -1,28 +0,0 @@
-#
-# This file contains key bindings for fish
-#
-
-# Include system-wide inputrc file before including fish-specific key
-# bindings if it exists
-
-$include /etc/inputrc
-
-$if fish
- "\M-l": __fish_list_current_token
- "\M-w": set tok (commandline -pt); if test $tok[1]; whatis $tok[1]; commandline -f repaint; end
- "\C-l": clear; commandline -f repaint
- "\C-c": delete-line
- "\C-u": backward-kill-line
- "\M-d": kill-word
- "\C-w": backward-kill-word
- "\M-k": dump-functions
- "\M-d": if test -z (commandline); dirh; commandline -f repaint; else; commandline -f kill-word; end
- "\C-d": delete-or-exit
-# This will make sure the output of the current command is paged using the less pager when you press Meta-p
- "\M-p": if commandline -j|grep -v 'less *$' >/dev/null; commandline -aj "|less;"; end
-$endif
-
-# Include user-specific inputrc file after including fish-specific
-# bindings so that they will override fish defaults
-
-$include ~/.inputrc