void-packages/srcpkgs/fzf/files/fzf-history-widget

13 lines
367 B
Text
Raw Normal View History

2015-06-06 20:50:58 +00:00
__fzfcmd() {
[ ${FZF_TMUX:-1} -eq 1 ] && echo "fzf-tmux -d${FZF_TMUX_HEIGHT:-40%}" || echo "fzf"
}
local selected restore_no_bang_hist
2015-06-23 20:27:40 +00:00
if selected=( $(fc -l 1 | $(__fzfcmd) +s --tac +m -n2..,.. --tiebreak=index --toggle-sort=ctrl-r -q "$LBUFFER") ); then
num=$selected[1]
2015-06-06 20:50:58 +00:00
if [ -n "$num" ]; then
2015-06-23 20:27:40 +00:00
zle vi-fetch-history -n $num
2015-06-06 20:50:58 +00:00
fi
2015-04-17 21:44:53 +00:00
fi
zle redisplay