aboutsummaryrefslogtreecommitdiffhomepage
path: root/init
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-12-15 00:09:06 +1000
committerGravatar axel <axel@liljencrantz.se>2005-12-15 00:09:06 +1000
commit1071fedaee2110681496b8dd9838fe7b97d5fe3b (patch)
tree8354d614a9ff5f598c7945da1be174b1e68af347 /init
parentab207b64a3a73d3550e32ab00935cbc9270a5942 (diff)
Fix Alt-p shortcut
darcs-hash:20051214140906-ac50b-73f73a4dd9f2d77f5cb70a742aa0331cbedc11ba.gz
Diffstat (limited to 'init')
-rw-r--r--init/fish_inputrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/fish_inputrc b/init/fish_inputrc
index f4ebb685..fefdd55e 100644
--- a/init/fish_inputrc
+++ b/init/fish_inputrc
@@ -19,7 +19,7 @@ $if fish
"\M-d": if test -z (commandline); dirh; 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
+ "\M-p": if commandline -j|grep -v 'less *$' >/dev/null; commandline -aj "|less;"; end
$endif
# Include user-specific inputrc file after including fish-specific