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.58.0 #51

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 14, 2023

This PR contains the following updates:

Package Update Change
junegunn/fzf minor 0.41.1 -> v0.58.0

Release Notes

junegunn/fzf (junegunn/fzf)

v0.58.0: 0.58.0

Compare Source

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

This version introduces three new border types, --list-border, --input-border, and --header-border, offering much greater flexibility for customizing the user interface.

Also, fzf now offers "style presets" for quick customization, which can be activated using the --style option.

Preset Screenshot
default
full
minimal
  • Style presets (#​4160)
    • --style=full[:BORDER_STYLE]
    • --style=default
    • --style=minimal
  • Border and label for the list section (#​4148)
    • Options
      • --list-border[=STYLE]
      • --list-label=LABEL
      • --list-label-pos=COL[:bottom]
    • Colors
      • list-fg
      • list-bg
      • list-border
      • list-label
    • Actions
      • change-list-label
      • transform-list-label
  • Border and label for the input section (prompt line and info line) (#​4154)
    • Options
      • --input-border[=STYLE]
      • --input-label=LABEL
      • --input-label-pos=COL[:bottom]
    • Colors
      • input-fg (query)
      • input-bg
      • input-border
      • input-label
    • Actions
      • change-input-label
      • transform-input-label
  • Border and label for the header section (#​4159)
    • Options
      • --header-border[=STYLE]
      • --header-label=LABEL
      • --header-label-pos=COL[:bottom]
    • Colors
      • header-fg (header)
      • header-bg
      • header-border
      • header-label
    • Actions
      • change-header-label
      • transform-header-label
  • Added --preview-border[=STYLE] as short for --preview-window=border[-STYLE]
  • Added new preview border style line which draws a single separator line between the preview window and the rest of the interface
  • fzf will now render a dashed line (┈┈) in each --gap for better visual separation.

All bash/zsh functions, highlighted

declare -f |
perl -0 -pe 's/^}\n/}\0/gm' |
bat --plain --language bash --color always |
fzf --read0 --ansi --layout reverse --multi --highlight-line --gap

![](https://redirect.github.com/user-attachments/assets/203bf377-28da-4abf-a19c-d456ab1a72bb)
- You can customize the line using `--gap-line[=STR]`.
- You can specify `border-native` to `--tmux` so that native tmux border is used instead of `--border`. This can be useful if you start a different program from inside the popup.
```sh
fzf --tmux border-native --bind 'enter:execute:less {}'
  • Added toggle-multi-line action
  • Added toggle-hscroll action
  • Added change-nth action for dynamically changing the value of the --nth option

Start with --nth 1, then 2, then 3, then back to the default, 1

echo 'foo foobar foobarbaz' | fzf --bind 'space:change-nth(2|3|)' --nth 1 -q foo

- `--nth` parts of each line can now be rendered in a different text style
```sh
### nth in a different style
ls -al | fzf --nth -1 --color nth:italic
ls -al | fzf --nth -1 --color nth:reverse
ls -al | fzf --nth -1 --color nth:reverse:bold
### Dim the other parts
ls -al | fzf --nth -1 --color nth:regular,fg:dim
### With 'change-nth'. The current nth option is exported as $FZF_NTH.
ps -ef | fzf --reverse --header-lines 1 --header-border bottom --input-border \
           --color nth:regular,fg:dim \
           --bind 'ctrl-n:change-nth(8..|1|2|3|4|5|6|7|)' \
           --bind 'result:transform-prompt:echo "${FZF_NTH}> "'

  • A single-character delimiter is now treated as a plain string delimiter rather than a regular expression delimiter, even if it's a regular expression meta-character.
    • This means you can just write --delimiter '|' instead of escaping it as --delimiter '\|'
  • Bug fixes
  • Bug fixes and improvements in fish scripts (thanks to @​bitraid)

v0.57.0: 0.57.0

Compare Source

  • You can now resize the preview window by dragging the border
  • Built-in walker improvements
    • --walker-root can take multiple directory arguments. e.g. --walker-root include src lib
    • --walker-skip can handle multi-component patterns. e.g. --walker-skip target/build
  • Removed long processing delay when displaying images in the preview window
  • FZF_PREVIEW_* environment variables are exported to all child processes (#​4098)
  • Bug fixes in fish scripts

v0.56.3: 0.56.3

Compare Source

  • Bug fixes in zsh scripts
    • fix(zsh): handle backtick trigger edge case (#​4090)
    • revert(zsh): remove 'fc -RI' call in the history widget (#​4093)
    • Thanks to @​LangLangBart for the contributions

v0.56.2: 0.56.2

Compare Source

  • Bug fixes
    • Fixed abnormal scrolling behavior when --wrap is set (#​4083)
    • [zsh] Fixed warning message when ksh_arrays is set (#​4084)

v0.56.1: 0.56.1

Compare Source

  • Bug fixes and improvements
    • Fixed a race condition which would cause fzf to present stale results after reload (#​4070)
    • page-up and page-down actions now work correctly with multi-line items (#​4069)
    • {n} is allowed in SCROLL expression in --preview-window (#​4079)
    • [zsh] Fixed regression in history loading with shared option (#​4071)
    • [zsh] Better command extraction in zsh completion (#​4082)
  • Thanks to @​LangLangBart, @​jaydee-coder, @​alex-huff, and @​vejkse for the contributions

v0.56.0: 0.56.0

Compare Source

  • Added --gap[=N] option to display empty lines between items.
    • This can be useful to visually separate adjacent multi-line items.

All bash functions, highlighted

  declare -f | perl -0777 -pe 's/^}\n/}\0/gm' |
    bat --plain --language bash --color always |
    fzf --read0 --ansi --reverse --multi --highlight-line --gap
  ```
  <img width="855" alt="image" src="https://github.com/user-attachments/assets/b3d2eaf2-bf44-4e3a-8d7b-9878629dd9be">
- Or just to make the list easier to read. For single-line items, you probably want to set `--color gutter:-1` as well to hide the gutter.
  ```sh
  fzf --info inline-right --gap --color gutter:-1
  ```
  <img width="855" alt="image" src="https://github.com/user-attachments/assets/113757a1-ccfd-42a6-b946-83533f408e69">

v0.55.0: 0.55.0

Compare Source

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

  • Added exact-boundary-match type to the search syntax. When a search term is single-quoted, fzf will search for the exact occurrences of the string with both ends at word boundaries.
    fzf --query "'here'" << EOF
    come here
    not there
    EOF
  • [bash] Fuzzy path completion is enabled for all commands
      1. If the default completion is not already set
      1. And if the current bash supports complete -D option
    • However, fuzzy completion for some commands can be "dynamically" disabled by the dynamic completion loader
    • See the comment in __fzf_default_completion function for more information
  • Comments are now allowed in $FZF_DEFAULT_OPTS and $FZF_DEFAULT_OPTS_FILE
    export FZF_DEFAULT_OPTS='

Layout options

--layout=reverse
--info=inline-right   # Show info on the right side of the prompt line

...

'

- Hyperlinks (OSC 8) are now supported in the preview window and in the main window
```sh
printf '<< \e]8;;http://github.com/junegunn/fzf\e\\Link to \e[32mfz\e[0mf\e]8;;\e\\ >>' | fzf --ansi

fzf --preview "printf '<< \e]8;;http://github.com/junegunn/fzf\e\\Link to \e[32mfz\e[0mf\e]8;;\e\\ >>'"
  • The default --ellipsis is now ·· instead of ...
  • [vim] A spec can have exit callback that is called with the exit status of fzf
    • This can be used to clean up temporary resources or restore the original state when fzf is closed without a selection
  • Fixed --tmux bottom when the status line is not at the bottom
  • Fixed extra scroll offset in multi-line mode (--read0 or --wrap)
  • Added fallback ps command for kill completion on Cygwin

v0.54.3: 0.54.3

Compare Source

  • Fixed incompatibility of adaptive height specification and 'start:reload'

A regression in 0.54.0 would cause this to fail

fzf --height '~100%' --bind 'start:reload:seq 10'

- Environment variables are now available to `$FZF_DEFAULT_COMMAND`
```sh
FZF_DEFAULT_COMMAND='echo $FZF_QUERY' fzf --query foo

v0.54.2: 0.54.2

Compare Source

  • Fixed incorrect syntax highlighting of truncated multi-line entries
  • Updated GoReleaser to 2.1.0 to simplify notarization of macOS binaries
    • macOS archives will be in tar.gz format instead of zip format since we no longer notarize the zip files but binaries
  • (Windows) Reverted a mintty fix in 0.54.0
    • As a result, mouse may not work on mintty in fullscreen mode. However, fzf will correctly read non-ASCII input in fullscreen mode (--no-height).
    • fzf unfortunately cannot read non-ASCII input when not in fullscreen mode on Windows. So if you need to input non-ASCII characters, add --no-height to your $FZF_DEFAULT_OPTS.
    • Any help in fixing this issue will be appreciated (#​3799, #​3847).

v0.54.1: 0.54.1

Compare Source

v0.54.0: 0.54.0

Compare Source

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

  • Implemented line wrap of long items
    • --wrap option enables line wrap
    • --wrap-sign customizes the sign for wrapped lines (default: )
    • toggle-wrap action toggles line wrap
      history | fzf --tac --wrap --bind 'ctrl-/:toggle-wrap' --wrap-sign $'\t'
    • fzf by default binds CTRL-/ and ALT-/ to toggle-wrap
  • Updated shell integration scripts to leverage line wrap
    • CTRL-R binding includes --wrap-sign $'\t↳ ' to indent wrapped lines
    • kill ** completion uses --wrap to show the whole line by default instead of showing it in the preview window
  • Added --info-command option for customizing the info line

Prepend the current cursor position in yellow

fzf --info-command='echo -e "\x1b[33;1m$FZF_POS\x1b[m/$FZF_INFO 💛"'

  - `$FZF_INFO` is set to the original info text
  - ANSI color codes are supported
- Pointer and marker signs can be set to empty strings
```sh
### Minimal style
fzf --pointer '' --marker '' --prompt '' --info hidden
  • Better cache management and improved rendering for --tail
  • Improved --sync behavior
    • When --sync is provided, fzf will not render the interface until the initial filtering and the associated actions (bound to any of start, load, result, or focus) are complete.

fzf will not render intermediate states

  (sleep 1; seq 1000000; sleep 1) |
    fzf --sync --query 5 --listen --bind start:up,load:up,result:up,focus:change-header:Ready
  ```
  • GET endpoint is now available from execute and transform actions (it used to timeout due to lock conflict)
    fzf --listen --sync --bind 'focus:transform-header:curl -s localhost:$FZF_PORT?limit=0 | jq .'
  • Added offset-middle action to place the current item is in the middle of the screen
  • fzf will not start the initial reader when reload or reload-sync is bound to start event. fzf < /dev/null or : | fzf are no longer required and extraneous load 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 extraneous

load 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!'

- Fixed mouse support on Windows
- Fixed crash when using `--tiebreak=end` with very long items
- zsh 5.0 compatibility (thanks to @&#8203;LangLangBart)
- Fixed `--walker-skip` to also skip symlinks to directories
- Fixed `result` event not fired when input stream is not complete
- Built-in reader of the Windows binary will print forward slashes on MSYS and WSL (thanks to @&#8203;charlievieth)
- New tags will have `v` prefix so that they are available on https://proxy.golang.org/

v0.53.0

Compare Source

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

All bash functions, highlighted

  declare -f | perl -0777 -pe 's/^}\n/}\0/gm' |
    bat --plain --language bash --color always |
    fzf --read0 --ansi --reverse --multi --highlight-line

Ripgrep multi-line output

  rg --pretty bash | perl -0777 -pe 's/\n\n/\n\0/gm' |
    fzf --read0 --ansi --multi --highlight-line --reverse --tmux 70%
  ```
    - To disable multi-line display, use `--no-multi-line`
- CTRL-R bindings of bash, zsh, and fish have been updated to leverage multi-line display
- The default `--pointer` and `--marker` have been changed from `>` to Unicode bar characters as they look better with multi-line items
- Added `--marker-multi-line` to customize the select marker for multi-line entries with the default set to `╻┃╹`
  ```
  ╻First line
  ┃...
  ╹Last line
  ```
  • Native tmux integration
    • Added --tmux option to replace fzf-tmux script and simplify distribution

--tmux [center|top|bottom|left|right][,SIZE[%]][,SIZE[%]]

Center, 100% width and 70% height

  fzf --tmux 100%,70% --border horizontal --padding 1,2

Left, 30% width

  fzf --tmux left,30%

Bottom, 50% height

  fzf --tmux bottom,50%
  ```
    - To keep the implementation simple, it only uses popups. You need tmux 3.3 or later.
- To use `--tmux` in Vim plugin:
  ```vim
  let g:fzf_layout = { 'tmux': '100%,70%' }
  ```
  • Added support for endless input streams
    • See Browsing log stream with fzf
    • Added --tail=NUM option to limit the number of items to keep in memory. This is useful when you want to browse an endless stream of data (e.g. log stream) with fzf while limiting memory usage.

Interactive filtering of a log stream

  tail -f *.log | fzf --tail 100000 --tac --no-sort --exact
  ```
  • Better Windows Support
    • fzf now works on Git bash (mintty) out of the box via winpty integration
    • Many fixes and improvements for Windows
  • man page is now embedded in the binary; fzf --man to see it
  • Changed the default --scroll-off to 3, as we think it's a better default
  • Process started by execute action now directly writes to and reads from /dev/tty. Manual /dev/tty redirection for interactive programs is no longer required.

v0.52.1

Compare Source

  • Fixed a critical bug in the Windows version
    • Windows users are strongly encouraged to upgrade to this version

v0.52.0

Compare Source

  • Added --highlight-line to highlight the whole current line (à la set cursorline of Vim)
  • Added color names for selected lines: selected-fg, selected-bg, and selected-hl
    fzf --border --multi --info inline-right --layout reverse --marker ▏ --pointer ▌ --prompt ''  \
        --highlight-line --color gutter:-1,selected-bg:238,selected-fg:146,current-fg:189
  • Added click-header event that is triggered when the header section is clicked. When the event is triggered, $FZF_CLICK_HEADER_COLUMN and $FZF_CLICK_HEADER_LINE are set.
    fd --type f |
      fzf --header $'[Files] [Directories]' --header-first \
          --bind 'click-header:transform:
            (( FZF_CLICK_HEADER_COLUMN <= 7 )) && echo "reload(fd --type f)"
            (( FZF_CLICK_HEADER_COLUMN >= 9 )) && echo "reload(fd --type d)"
          '
  • Add $FZF_COMPLETION_{DIR,PATH}_OPTS for separately customizing the behavior of fuzzy completion

v0.51.0

Compare Source

  • Added a new environment variable $FZF_POS exported to the child processes. It's the vertical position of the cursor in the list starting from 1.

v0.50.0

Compare Source

  • Search performance optimization. You can observe 50%+ improvement in some scenarios.
    $ rg --line-number --no-heading --smart-case . > $DATA

    $ wc < $DATA
     5520118 26862362 897487793
    
    $ hyperfine -w 1 -L bin fzf-0.49.0,fzf-7ce6452,fzf-a5447b8,fzf '{bin} --filter "///" < $DATA | head -30'
    Summary
      fzf --filter "///" < $DATA | head -30 ran
        1.16 ± 0.03 times faster than fzf-a5447b8 --filter "///" < $DATA | head -30
        1.23 ± 0.03 times faster than fzf-7ce6452 --filter "///" < $DATA | head -30
        1.52 ± 0.03 times faster than fzf-0.49.0 --filter "///" < $DATA | head -30
    
  • Added jump and jump-cancel events that are triggered when leaving jump mode

v0.49.0

Compare Source

  • Ingestion performance improved by around 40% (more or less depending on options)
  • --info=hidden and --info=inline-right will no longer hide the horizontal separator by default. This gives you more flexibility in customizing the layout.
    fzf --border --info=inline-right
    fzf --border --info=inline-right --separator ═
    fzf --border --info=inline-right --no-separator
    fzf --border --info=hidden
    fzf --border --info=hidden --separator ━
    fzf --border --info=hidden --no-separator
  • Added two environment variables exported to the child processes
    • FZF_PREVIEW_LABEL
    • FZF_BORDER_LABEL

Use the current value of $FZF_PREVIEW_LABEL to determine which actions to perform

git ls-files |
  fzf --header 'Press CTRL-P to change preview mode' \
      --bind='ctrl-p:transform:[[ $FZF_PREVIEW_LABEL =~ cat ]] \
      && echo "change-preview(git log --color=always \{})+change-preview-label([[ log ]])" \
      || echo "change-preview(bat --color=always \{})+change-preview-label([[ cat ]])"'
```
  • Renamed track action to track-current to highlight the difference between the global tracking state set by --track and a one-off tracking action
    • track is still available as an alias
  • Added untrack-current and toggle-track-current actions
    • *-current actions are no-op when the global tracking state is set
  • Bug fixes and minor improvements

v0.48.1

Compare Source

  • CTRL-T and ALT-C bindings can be disabled by setting FZF_CTRL_T_COMMAND and FZF_ALT_C_COMMAND to empty strings respectively when sourcing the script

bash

FZF_CTRL_T_COMMAND= FZF_ALT_C_COMMAND= eval "$(fzf --bash)"

zsh

FZF_CTRL_T_COMMAND= FZF_ALT_C_COMMAND= eval "$(fzf --zsh)"

fish

fzf --fish | FZF_CTRL_T_COMMAND= FZF_ALT_C_COMMAND= source
```
- Setting the variables after sourcing the script will have no effect
  • Bug fixes

v0.48.0

Compare Source

  • Shell integration scripts are now embedded in the fzf binary. This simplifies the distribution, and the users are less likely to have problems caused by using incompatible scripts and binaries.
    • bash

Set up fzf key bindings and fuzzy completion

  eval "$(fzf --bash)"
  ```
- zsh
  ```sh

Set up fzf key bindings and fuzzy completion

  eval "$(fzf --zsh)"
  ```
- fish
  ```fish

Set up fzf key bindings

  fzf --fish | source
  ```
  • Added options for customizing the behavior of the built-in walker
    Option Description Default
    --walker=OPTS Walker options ([file][,dir][,follow][,hidden]) file,follow,hidden
    --walker-root=DIR Root directory from which to start walker .
    --walker-skip=DIRS Comma-separated list of directory names to skip .git,node_modules
    • Examples

Built-in walker is only used by standalone fzf when $FZF_DEFAULT_COMMAND is not set

    unset FZF_DEFAULT_COMMAND

    fzf # default: --walker=file,follow,hidden --walker-root=. --walker-skip=.git,node_modules
    fzf --walker=file,dir,hidden,follow --walker-skip=.git,node_modules,target

Walker options in $FZF_DEFAULT_OPTS

    export FZF_DEFAULT_OPTS="--walker=file,dir,hidden,follow --walker-skip=.git,node_modules,target"
    fzf

Reading from STDIN; --walker is ignored

    seq 100 | fzf --walker=dir

Reading from $FZF_DEFAULT_COMMAND; --walker is ignored

    export FZF_DEFAULT_COMMAND='seq 100'
    fzf --walker=dir
    ```
  • Shell integration scripts have been updated to use the built-in walker with these new options and they are now much faster out of the box.

v0.47.0

Compare Source

  • Replaced "the default find command" with a built-in directory walker to simplify the code and to achieve better performance and consistent behavior across platforms.
    This doesn't affect you if you have $FZF_DEFAULT_COMMAND set.
    • Breaking changes:
      • Unlike the previous "find" command, the new traversal code will list hidden files, but hidden directories will still be ignored
      • No filtering of devtmpfs or proc types
      • Traversal is parallelized, so the order of the entries will be different each time
    • You may wonder why fzf implements directory walker anyway when it's a filter program following the Unix philosophy.
      But fzf has had the walker code for years to tackle the performance problem on Windows. And I decided to use the same approach on different platforms as well for the benefits listed above.
    • Built-in walker is using the excellent charlievieth/fastwalk library, which easily outperforms its competitors and supports safely following symlinks.
  • Added $FZF_DEFAULT_OPTS_FILE to allow managing default options in a file
    • See #​3618
    • Option precedence from lower to higher
      1. Options read from $FZF_DEFAULT_OPTS_FILE
      2. Options from $FZF_DEFAULT_OPTS
      3. Options from command-line arguments
  • Bug fixes and improvements

v0.46.1

Compare Source

v0.46.0

Compare Source

  • Added two new events
    • result - triggered when the filtering for the current query is complete and the result list is ready
    • resize - triggered when the terminal size is changed
  • fzf now exports the following environment variables to the child processes
    Variable Description
    FZF_LINES Number of lines fzf takes up excluding padding and margin
    FZF_COLUMNS Number of columns fzf takes up excluding padding and margin
    FZF_TOTAL_COUNT Total number of items
    FZF_MATCH_COUNT Number of matched items
    FZF_SELECT_COUNT Number of selected items
    FZF_QUERY Current query string
    FZF_PROMPT Prompt string
    FZF_ACTION The name of the last action performed
    • This allows you to write sophisticated transformations like so

Script to dynamically resize the preview window

transformer='

1 line for info, another for prompt, and 2 more lines for preview window border

  lines=$(( FZF_LINES - FZF_MATCH_COUNT - 4 ))
  if [[ $FZF_MATCH_COUNT -eq 0 ]]; then
    echo "change-preview-window:hidden"
  elif [[ $lines -gt 3 ]]; then
    echo "change-preview-window:$lines"
  elif [[ $FZF_PREVIEW_LINES -ne 3 ]]; then
    echo "change-preview-window:3"
  fi
'
seq 10000 | fzf --preview 'seq {} 10000' --preview-window up \
                --bind "result:transform:$transformer" \
                --bind "resize:transform:$transformer"
```
  • And we're phasing out {fzf:prompt} and {fzf:action}
  • Changed mattn/go-runewidth dependency to rivo/uniseg for accurate results
    • Set --ambidouble if your terminal displays ambiguous width characters (e.g. box-drawing characters for borders) as 2 columns
    • RUNEWIDTH_EASTASIAN=1 is still respected for backward compatibility, but it's recommended that you use this new option instead
  • Bug fixes

v0.45.0

Compare Source

  • Added transform action to conditionally perform a series of actions

v0.44.1

Compare Source

  • Fixed crash when preview window is hidden on focus event

v0.44.0

Compare Source

  • (Experimental) Sixel image support in preview window (not available on Windows)
    • bin/fzf-preview.sh is added to demonstrate how to
      display an image using Kitty image protocol or Sixel. You can use it
      like so:
      fzf --preview='fzf-preview.sh {}'
  • (Experimental) iTerm2 inline image protocol support in preview window (not available on Windows)

v0.43.0

Compare Source

  • (Experimental) Added support for Kitty image protocol in the preview window
    (not available on Windows)
    fzf --preview='
      if file --mime-type {} | grep -qF image/; then

--transfer-mode=memory is the fastest option but if you want fzf to be able

to redraw the image on terminal resize or on 'change-preview-window',

you need to use --transfer-mode=stream.

  kitty icat --clear --transfer-mode=memory --unicode-placeholder --stdin=no --place=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}@&#8203;0x0 {} | sed \$d
else
  bat --color=always {}
fi

'

- (Experimental) `--listen` server can report program state in JSON format (`GET /`)
```sh

v0.42.0

Compare Source

  • Added new info style: --info=right
  • Added new info style: --info=inline-right
  • Added new border style thinblock which uses symbols for legacy computing
    one eighth block elements
    • Similarly to block, this style is suitable when using a different
      background color because the window is completely contained within the border.
      BAT_THEME=GitHub fzf --info=right --border=thinblock --preview-window=border-thinblock \
          --margin=3 --scrollbar=▏▕ --preview='bat --color=always --style=numbers {}' \
          --color=light,query:238,fg:238,bg:251,bg+:249,gutter:251,border:248,preview-bg:253
    • This style may not render correctly depending on the font and the
      terminal emulator.

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.


  • 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 changed the title Update dependency junegunn/fzf to v0.42.0 Update dependency junegunn/fzf to v0.43.0 Oct 14, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from dca92e7 to 896c9df Compare October 14, 2023 19:34
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 896c9df to 4365a9c Compare November 12, 2023 13:21
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.43.0 Update dependency junegunn/fzf to v0.44.0 Nov 12, 2023
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.44.0 Update dependency junegunn/fzf to v0.44.1 Nov 17, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 4365a9c to 165878c Compare November 17, 2023 12:59
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 165878c to e6d1965 Compare January 1, 2024 10:12
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.44.1 Update dependency junegunn/fzf to v0.45.0 Jan 1, 2024
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.45.0 Update dependency junegunn/fzf to v0.46.0 Jan 23, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from e6d1965 to bdd3052 Compare January 23, 2024 17:11
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from bdd3052 to 6e7d908 Compare February 1, 2024 13:50
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.46.0 Update dependency junegunn/fzf to v0.46.1 Feb 1, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 6e7d908 to fbb90bc Compare March 10, 2024 13:19
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.46.1 Update dependency junegunn/fzf to v0.47.0 Mar 10, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from fbb90bc to 9f2c8c8 Compare March 13, 2024 17:30
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.47.0 Update dependency junegunn/fzf to v0.48.0 Mar 13, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 9f2c8c8 to de2cd75 Compare March 17, 2024 11:17
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.48.0 Update dependency junegunn/fzf to v0.48.1 Mar 17, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from de2cd75 to 61d31d8 Compare April 4, 2024 17:27
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.48.1 Update dependency junegunn/fzf to v0.49.0 Apr 4, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 61d31d8 to fc38ec9 Compare April 14, 2024 15:22
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.49.0 Update dependency junegunn/fzf to v0.50.0 Apr 14, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from fc38ec9 to 951aeac Compare May 1, 2024 07:11
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.50.0 Update dependency junegunn/fzf to v0.51.0 May 1, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 951aeac to b84e4b0 Compare May 7, 2024 16:32
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.51.0 Update dependency junegunn/fzf to v0.52.0 May 7, 2024
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.52.0 Update dependency junegunn/fzf to v0.52.1 May 13, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from b84e4b0 to 09c8cd4 Compare May 13, 2024 19:10
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 09c8cd4 to 63cbb3d Compare June 6, 2024 16:56
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.52.1 Update dependency junegunn/fzf to v0.53.0 Jun 6, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 63cbb3d to 4bf606c Compare July 8, 2024 17:17
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.53.0 Update dependency junegunn/fzf to v0.54.0 Jul 8, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 4bf606c to 4157ad7 Compare July 19, 2024 09:18
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.54.0 Update dependency junegunn/fzf to v0.54.1 Jul 19, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 4157ad7 to 8da33da Compare July 26, 2024 11:24
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.54.1 Update dependency junegunn/fzf to v0.54.2 Jul 26, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 8da33da to 681d303 Compare July 31, 2024 16:26
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.54.2 Update dependency junegunn/fzf to v0.54.3 Jul 31, 2024
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.54.3 Update dependency junegunn/fzf to v0.55.0 Aug 29, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 681d303 to 8bd05e2 Compare August 29, 2024 10:48
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 8bd05e2 to d12af12 Compare October 27, 2024 06:07
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.55.0 Update dependency junegunn/fzf to v0.56.0 Oct 27, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from d12af12 to c568680 Compare November 10, 2024 16:49
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.56.0 Update dependency junegunn/fzf to v0.56.1 Nov 10, 2024
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.56.1 Update dependency junegunn/fzf to v0.56.2 Nov 11, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch 2 times, most recently from 36cc8a0 to 4a20cb0 Compare November 15, 2024 03:28
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.56.2 Update dependency junegunn/fzf to v0.56.3 Nov 15, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 4a20cb0 to 22a3c28 Compare December 15, 2024 09:26
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.56.3 Update dependency junegunn/fzf to v0.57.0 Dec 15, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 22a3c28 to f6680c1 Compare January 19, 2025 20:21
@renovate renovate bot changed the title Update dependency junegunn/fzf to v0.57.0 Update dependency junegunn/fzf to v0.58.0 Jan 19, 2025
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