Fix fuzzy creation of new file
FZF exits with a status of 1 if nothing was selected. This is often the case though if we are creating a new file so I added `|| true` to make bash continue anyway
This commit is contained in:
parent
463100a6a6
commit
a9cdb7dfe9
1 changed files with 2 additions and 2 deletions
4
inc/fzf
4
inc/fzf
|
@ -16,8 +16,8 @@ ${YELLOW}ctrl+e $WHITE edit selected ${YELLOW}ctrl+d $WHITE delete selected
|
||||||
output="$(listEntries |
|
output="$(listEntries |
|
||||||
fzf --header="$header" --header-lines=2 --print-query \
|
fzf --header="$header" --header-lines=2 --print-query \
|
||||||
--delimiter=" +" --with-nth=3,5 --height=100% \
|
--delimiter=" +" --with-nth=3,5 --height=100% \
|
||||||
--expect="ctrl-n,ctrl-o,ctrl-e,ctrl-d" \
|
--expect="ctrl-n,ctrl-v,ctrl-e,ctrl-d" \
|
||||||
--preview='bash -c "fzfPreview {}"')"
|
--preview='bash -c "fzfPreview {}"')" || true
|
||||||
|
|
||||||
query="$(echo "$output" | sed -n '1p')"
|
query="$(echo "$output" | sed -n '1p')"
|
||||||
operation="$(echo "$output" | sed -n '2p')"
|
operation="$(echo "$output" | sed -n '2p')"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue