fix typo in argument of head

at least my version of head wants -n1 to only display the first line
pull/231/head
Robin Roth 9 years ago
parent 683abb86ef
commit 01405ad92e

@ -37,7 +37,7 @@ bindkey '\ec' fzf-cd-widget
fzf-history-widget() {
local selected restore_no_bang_hist
if selected=$(fc -l 1 | $(__fzfcmd) +s --tac +m -n2..,.. --tiebreak=index --toggle-sort=ctrl-r -q "$LBUFFER"); then
num=$(echo "$selected" | head -1 | awk '{print $1}' | sed 's/[^0-9]//g')
num=$(echo "$selected" | head -n1 | awk '{print $1}' | sed 's/[^0-9]//g')
if [ -n "$num" ]; then
LBUFFER=!$num
if setopt | grep nobanghist > /dev/null; then

Loading…
Cancel
Save