summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2014-02-13 16:47:53 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2014-02-13 16:47:53 +0900
commit2b8c2b9f2af82d251a5929d08ba81cec25587487 (patch)
tree2e7ade94f8187823d08a755ea3cf5b283bb036e2
parent426284c87e0e9ff0cdcf2cb7a4fc5bd708331ace (diff)
CTRL-R for bash: Unset $HISTTIMEFORMAT
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index 03e88043..82ad652c 100755
--- a/install
+++ b/install
@@ -111,7 +111,7 @@ __fsel() {
bind '"\C-t": " \C-u \C-a\C-k$(__fsel)\e\C-e\C-y\C-a\C-y\ey\C-h\C-e\er"'
# CTRL-R - Paste the selected command from history into the command line
-bind '"\C-r": " \C-e\C-u$(history | fzf +s | sed \"s/ *[0-9]* *//\")\e\C-e\er"'
+bind '"\C-r": " \C-e\C-u$(HISTTIMEFORMAT= history | fzf +s | sed \"s/ *[0-9]* *//\")\e\C-e\er"'
EOF
else