From 00c8a68430e232e32160e86f7e8cd8beffe1a76b Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 26 Feb 2014 11:46:30 +0900 Subject: [PATCH] Unalias history on zsh (related #19) --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index fe8dbe0..d7a874d 100755 --- a/install +++ b/install @@ -150,7 +150,7 @@ bindkey '\ec' fzf-cd-widget # CTRL-R - Paste the selected command from history into the command line fzf-history-widget() { - LBUFFER=$(history -$HISTSIZE | fzf +s | sed "s/ *[0-9]* *//") + LBUFFER=$('history' -$HISTSIZE | fzf +s | sed "s/ *[0-9]* *//") zle redisplay } zle -N fzf-history-widget