Merge pull request #19 from wellle/zsh_history

Feed all zsh history into fzf (not only most recent)
This commit is contained in:
Junegunn Choi 2014-02-25 23:41:54 +09:00
commit c1be834ff9

View File

@ -150,7 +150,7 @@ bindkey '\ec' fzf-cd-widget
# CTRL-R - Paste the selected command from history into the command line # CTRL-R - Paste the selected command from history into the command line
fzf-history-widget() { fzf-history-widget() {
LBUFFER=$(history | fzf +s | sed "s/ *[0-9]* *//") LBUFFER=$(history -$HISTSIZE | fzf +s | sed "s/ *[0-9]* *//")
zle redisplay zle redisplay
} }
zle -N fzf-history-widget zle -N fzf-history-widget