From 1071fedaee2110681496b8dd9838fe7b97d5fe3b Mon Sep 17 00:00:00 2001 From: axel Date: Thu, 15 Dec 2005 00:09:06 +1000 Subject: [PATCH] Fix Alt-p shortcut darcs-hash:20051214140906-ac50b-73f73a4dd9f2d77f5cb70a742aa0331cbedc11ba.gz --- init/fish_inputrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/fish_inputrc b/init/fish_inputrc index f4ebb685e..fefdd55e5 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