Merge pull request #4 from Freed-Wu/fix-1969

Fix #3
This commit is contained in:
Josh Skidmore
2021-08-04 15:02:08 -04:00
committed by GitHub

View File

@@ -1,9 +1,9 @@
fzf_history_seach() {
BUFFER=$(history -t '%Y-%m-%d %H:%M:%S' 0 | grep -v 1969 | fzf +s +m -x --tac -e -q "$BUFFER" | awk '{print substr($0, index($0, $4))}')
BUFFER=$(history -t '%Y-%m-%d %H:%M:%S' 0 | fzf +s +m -x --tac -e -q "$BUFFER" | awk '{print substr($0, index($0, $4))}')
zle end-of-line
}
autoload fzf_history_seach
zle -N fzf_history_seach
bindkey '^r' fzf_history_seach
bindkey '^r' fzf_history_seach