Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency junegunn/fzf to v0.60.0 #440

Merged
merged 1 commit into from
Feb 12, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 12, 2025

This PR contains the following updates:

Package Update Change
junegunn/fzf minor v0.59.0 -> v0.60.0

Release Notes

junegunn/fzf (junegunn/fzf)

v0.60.0: 0.60.0

Compare Source

Release highlights: https://junegunn.github.io/fzf/releases/0.60.0/

  • Added --accept-nth for choosing output fields
    ps -ef | fzf --multi --header-lines 1 | awk '{print $2}'

Becomes

ps -ef | fzf --multi --header-lines 1 --accept-nth 2

git branch | fzf | cut -c3-

Can be rewritten as

git branch | fzf --accept-nth -1

- `--accept-nth` and `--with-nth` now support a template that includes multiple field index expressions in curly braces
```sh
echo foo,bar,baz | fzf --delimiter , --accept-nth '{1}, {3}, {2}'
### foo, baz, bar

echo foo,bar,baz | fzf --delimiter , --with-nth '{1},{3},{2},{1..2}'
### foo,baz,bar,foo,bar
  • Added exclude and exclude-multi actions for dynamically excluding items
    seq 100 | fzf --bind 'ctrl-x:exclude'

'exclude-multi' will exclude the selected items or the current item

seq 100 | fzf --multi --bind 'ctrl-x:exclude-multi'

- Preview window now prints wrap indicator when wrapping is enabled
```sh
seq 100 | xargs | fzf --wrap --preview 'echo {}' --preview-window wrap
  • Bug fixes and improvements

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) February 12, 2025 18:50
@renovate renovate bot merged commit e981931 into main Feb 12, 2025
1 check failed
@renovate renovate bot deleted the renovate/junegunn-fzf-0.x branch February 12, 2025 18:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants