Skip to content
Snippets Groups Projects
Commit 01405ad9 authored by Robin Roth's avatar Robin Roth
Browse files

fix typo in argument of head

at least my version of head wants -n1 to only display the first line
parent 683abb86
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment