Update install

Update sed regex to strip "*" from history lines when using tmux and fc
e.g. "637* ls -a"
This commit is contained in:
Tom Cammann 2014-05-26 08:33:48 +01:00
parent 1b9dadb3d3
commit 1e02471940

View File

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