Update dependency junegunn/fzf to v0.54.0 #35
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.53.0
->v0.54.0
Release Notes
junegunn/fzf (junegunn/fzf)
v0.54.0
: 0.54.0Compare Source
Release highlights: https://junegunn.github.io/fzf/releases/0.54.0/
--wrap
option enables line wrap--wrap-sign
customizes the sign for wrapped lines (default:↳
)toggle-wrap
action toggles line wrapCTRL-/
andALT-/
totoggle-wrap
--wrap-sign $'\t↳ '
to indent wrapped lineskill **
completion uses--wrap
to show the whole line by defaultinstead of showing it in the preview window
--info-command
option for customizing the info linePrepend the current cursor position in yellow
fzf --info-command='echo -e "\x1b[33;1m$FZF_POS\x1b[m/$FZF_INFO 💛"'
--tail
--sync
behavior--sync
is provided, fzf will not render the interface until the initial filtering and the associated actions (bound to any ofstart
,load
,result
, orfocus
) are complete.fzf will not render intermediate states
execute
andtransform
actions (it used to timeout due to lock conflict)fzf --listen --sync --bind 'focus:transform-header:curl -s localhost:$FZF_PORT?limit=0 | jq .'
offset-middle
action to place the current item is in the middle of the screenreload
orreload-sync
is bound tostart
event.fzf < /dev/null
or: | fzf
are no longer required and extraneousload
event will not fire due to the empty list.Now this will work as expected. Previously, this would print an invalid header line.
fzf < /dev/null
or: | fzf
would fix the problem, but then an extraneousload
event would fire and the header would be prematurely updated.fzf --header 'Loading ...' --header-lines 1
--bind 'start:reload:sleep 1; ps -ef'
--bind 'load:change-header:Loaded!'
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.