Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 21, 2025

Bumps github.com/junegunn/fzf from 0.65.2 to 0.67.0.

Release notes

Sourced from github.com/junegunn/fzf's releases.

0.67.0

  • Added --freeze-left=N option to keep the leftmost N columns always visible.
    # Keep the file name column fixed and always visible
    git grep --line-number --color=always -- '' |
        fzf --ansi --delimiter : --freeze-left 1
    Can be used with --keep-right
    git grep --line-number --color=always -- '' |
    fzf --ansi --delimiter : --freeze-left 1 --keep-right

  • Also added --freeze-right=N option to keep the rightmost N columns always visible.
    # Stronger version of --keep-right that always keeps the right-end visible
    fd | fzf --freeze-right 1
    Keep the base name always visible
    fd | fzf --freeze-right 1 --delimiter /
    Keep both leftmost and rightmost components visible
    fd | fzf --freeze-left 1 --freeze-right 1 --delimiter /

  • Updated --info=inline to print the spinner (load indicator).
  • Bug fixes

0.66.1

  • Bug fixes
    • Fixed a bug preventing 'ctrl-h' from being bound to an action (#4556)
    • Fixed --no-color / NO_COLOR theme (#4561)

0.66.0

Quick summary

This version introduces many new features centered around the new "raw" mode.

Type Class Name Description
New Option --raw Enable raw mode by default
New Option --gutter CHAR Set the gutter column character
New Option --gutter-raw CHAR Set the gutter column character in raw mode
Enhancement Option --listen SOCKET Added support for Unix domain sockets
New Action toggle-raw Toggle raw mode
New Action enable-raw Enable raw mode
New Action disable-raw Disable raw mode
New Action up-match Move up to the matching item
New Action down-match Move down to the matching item
New Action best Move to the matching item with the best score

... (truncated)

Changelog

Sourced from github.com/junegunn/fzf's changelog.

0.67.0

  • Added --freeze-left=N option to keep the leftmost N columns always visible.
    # Keep the file name column fixed and always visible
    git grep --line-number --color=always -- '' |
        fzf --ansi --delimiter : --freeze-left 1
    Can be used with --keep-right
    git grep --line-number --color=always -- '' |
    fzf --ansi --delimiter : --freeze-left 1 --keep-right

  • Also added --freeze-right=N option to keep the rightmost N columns always visible.
    # Stronger version of --keep-right that always keeps the right-end visible
    fd | fzf --freeze-right 1
    Keep the base name always visible
    fd | fzf --freeze-right 1 --delimiter /
    Keep both leftmost and rightmost components visible
    fd | fzf --freeze-left 1 --freeze-right 1 --delimiter /

  • Updated --info=inline to print the spinner (load indicator).
  • Bug fixes

0.66.1

  • Bug fixes
    • Fixed a bug preventing 'ctrl-h' from being bound to an action (#4556)
    • Fixed --no-color / NO_COLOR theme (#4561)

0.66.0

Quick summary

This version introduces many new features centered around the new "raw" mode.

Type Class Name Description
New Option --raw Enable raw mode by default
New Option --gutter CHAR Set the gutter column character
New Option --gutter-raw CHAR Set the gutter column character in raw mode
Enhancement Option --listen SOCKET Added support for Unix domain sockets
New Action toggle-raw Toggle raw mode
New Action enable-raw Enable raw mode
New Action disable-raw Disable raw mode
New Action up-match Move up to the matching item
New Action down-match Move down to the matching item

... (truncated)

Commits
  • 2ab923f 0.67.0
  • c3e6d9a Distinguish between Ctrl-H and Ctrl-Backspace in Windows (#4590)
  • 2471edf Make ctrl-alt-h a synonym of ctrl-alt-backspace on non-Windows environment (#...
  • 53a8aee Deploying to master from @ junegunn/fzf@60b35e7...
  • 60b35e7 Header and footer should not be wider than the list
  • 3f499f0 Avoid truncating ellipsis to avoid confusion
  • 1df99db Keep the previous delimiter before frozen columns
  • 535b610 Bump github/codeql-action from 3 to 4 (#4554)
  • 91fab3b Fix lint warnings (#4586)
  • b9f2bf6 Add --freeze-right=N option to keep the rightmost N fields visible
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 21, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 21, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

Bumps [github.com/junegunn/fzf](https://github.com/junegunn/fzf) from 0.65.2 to 0.67.0.
- [Release notes](https://github.com/junegunn/fzf/releases)
- [Changelog](https://github.com/junegunn/fzf/blob/master/CHANGELOG.md)
- [Commits](junegunn/fzf@v0.65.2...v0.67.0)

---
updated-dependencies:
- dependency-name: github.com/junegunn/fzf
  dependency-version: 0.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/junegunn/fzf-0.67.0 branch from 4021c9e to 13d18f5 Compare November 25, 2025 17:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant