2015-02-25 16:42:15 +00:00
|
|
|
|
CHANGELOG
|
|
|
|
|
=========
|
|
|
|
|
|
2023-11-02 15:07:28 +00:00
|
|
|
|
0.44.0
|
2023-10-22 16:01:47 +00:00
|
|
|
|
------
|
2023-11-02 15:07:28 +00:00
|
|
|
|
- (Experimental) Sixel image support in preview window
|
2023-10-25 15:22:28 +00:00
|
|
|
|
- [bin/fzf-preview.sh](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:
|
|
|
|
|
```sh
|
|
|
|
|
fzf --preview='fzf-preview.sh {}'
|
|
|
|
|
```
|
2023-11-02 15:07:28 +00:00
|
|
|
|
- (Experimental) Sixel and Kitty image support now also available on Windows
|
2023-11-04 07:06:59 +00:00
|
|
|
|
- HTTP server can be configured to accept remote connections
|
|
|
|
|
```sh
|
|
|
|
|
# FZF_API_KEY is required for a non-localhost listen address
|
|
|
|
|
export FZF_API_KEY="$(head -c 32 /dev/urandom | base64)"
|
|
|
|
|
fzf --listen 0.0.0.0:6266
|
|
|
|
|
```
|
2023-10-22 16:01:47 +00:00
|
|
|
|
- Bug fixes
|
|
|
|
|
|
2023-07-25 13:11:15 +00:00
|
|
|
|
0.43.0
|
2023-07-20 14:42:09 +00:00
|
|
|
|
------
|
2023-10-14 16:52:02 +00:00
|
|
|
|
- (Experimental) Added support for Kitty image protocol in the preview window
|
2023-10-25 15:22:28 +00:00
|
|
|
|
(not available on Windows)
|
2023-10-07 09:20:27 +00:00
|
|
|
|
```sh
|
|
|
|
|
fzf --preview='
|
2023-10-08 16:29:03 +00:00
|
|
|
|
if file --mime-type {} | grep -qF image/; then
|
2023-10-07 09:20:27 +00:00
|
|
|
|
# --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.
|
2023-10-14 16:52:02 +00:00
|
|
|
|
kitty icat --clear --transfer-mode=memory --stdin=no --place=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}@0x0 {} | sed \$d
|
2023-10-07 09:20:27 +00:00
|
|
|
|
else
|
|
|
|
|
bat --color=always {}
|
|
|
|
|
fi
|
|
|
|
|
'
|
|
|
|
|
```
|
2023-10-14 16:52:02 +00:00
|
|
|
|
- (Experimental) `--listen` server can report program state in JSON format (`GET /`)
|
2023-09-22 12:59:47 +00:00
|
|
|
|
```sh
|
|
|
|
|
# fzf server started in "headless" mode
|
|
|
|
|
fzf --listen 6266 2> /dev/null
|
|
|
|
|
|
|
|
|
|
# Get program state
|
|
|
|
|
curl localhost:6266 | jq .
|
|
|
|
|
|
|
|
|
|
# Increase the number of items returned (default: 100)
|
|
|
|
|
curl localhost:6266?limit=1000 | jq .
|
|
|
|
|
```
|
2023-07-20 14:42:09 +00:00
|
|
|
|
- `--listen` server can be secured by setting `$FZF_API_KEY` environment
|
|
|
|
|
variable.
|
|
|
|
|
```sh
|
|
|
|
|
export FZF_API_KEY="$(head -c 32 /dev/urandom | base64)"
|
|
|
|
|
|
|
|
|
|
# Server
|
|
|
|
|
fzf --listen 6266
|
|
|
|
|
|
|
|
|
|
# Client
|
|
|
|
|
curl localhost:6266 -H "x-api-key: $FZF_API_KEY" -d 'change-query(yo)'
|
|
|
|
|
```
|
2023-07-25 13:11:15 +00:00
|
|
|
|
- Added `toggle-header` action
|
2023-10-10 09:58:22 +00:00
|
|
|
|
- Added mouse events for `--bind`
|
|
|
|
|
- `scroll-up` (bound to `up`)
|
|
|
|
|
- `scroll-down` (bound to `down`)
|
|
|
|
|
- `shift-scroll-up` (bound to `toggle+up`)
|
|
|
|
|
- `shift-scroll-down` (bound to `toggle+down`)
|
|
|
|
|
- `shift-left-click` (bound to `toggle`)
|
|
|
|
|
- `shift-right-click` (bound to `toggle`)
|
|
|
|
|
- `preview-scroll-up` (bound to `preview-up`)
|
|
|
|
|
- `preview-scroll-down` (bound to `preview-down`)
|
|
|
|
|
```sh
|
|
|
|
|
# Twice faster scrolling both in the main window and the preview window
|
|
|
|
|
fzf --bind 'scroll-up:up+up,scroll-down:down+down' \
|
|
|
|
|
--bind 'preview-scroll-up:preview-up+preview-up' \
|
|
|
|
|
--bind 'preview-scroll-down:preview-down+preview-down' \
|
|
|
|
|
--preview 'cat {}'
|
|
|
|
|
```
|
2023-10-11 03:51:05 +00:00
|
|
|
|
- Added `offset-up` and `offset-down` actions
|
|
|
|
|
```sh
|
|
|
|
|
# Scrolling will behave similarly to CTRL-E and CTRL-Y of vim
|
|
|
|
|
fzf --bind scroll-up:offset-up,scroll-down:offset-down \
|
|
|
|
|
--bind ctrl-y:offset-up,ctrl-e:offset-down \
|
|
|
|
|
--scroll-off=5
|
|
|
|
|
```
|
2023-09-22 12:59:47 +00:00
|
|
|
|
- Shell extensions
|
2023-10-11 03:51:05 +00:00
|
|
|
|
- Updated bash completion for fzf options
|
2023-09-22 12:59:47 +00:00
|
|
|
|
- bash key bindings no longer requires perl; it will use awk or mawk
|
|
|
|
|
instead if perl is not found
|
|
|
|
|
- Basic context-aware completion for ssh command
|
|
|
|
|
- Applied `--scheme=path` for better ordering of the result
|
|
|
|
|
- Bug fixes and improvements
|
2023-07-20 14:42:09 +00:00
|
|
|
|
|
2023-06-10 14:11:05 +00:00
|
|
|
|
0.42.0
|
2023-06-10 05:48:29 +00:00
|
|
|
|
------
|
2023-06-10 15:04:24 +00:00
|
|
|
|
- Added new info style: `--info=right`
|
2023-06-10 14:11:05 +00:00
|
|
|
|
- Added new info style: `--info=inline-right`
|
2023-06-10 05:48:29 +00:00
|
|
|
|
- Added new border style `thinblock` which uses symbols for legacy computing
|
|
|
|
|
[one eighth block elements](https://en.wikipedia.org/wiki/Symbols_for_Legacy_Computing)
|
|
|
|
|
- Similarly to `block`, this style is suitable when using a different
|
|
|
|
|
background color because the window is completely contained within the border.
|
|
|
|
|
```sh
|
2023-06-14 15:37:41 +00:00
|
|
|
|
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
|
2023-06-10 05:48:29 +00:00
|
|
|
|
```
|
|
|
|
|
- This style may not render correctly depending on the font and the
|
|
|
|
|
terminal emulator.
|
|
|
|
|
|
2023-05-27 06:54:22 +00:00
|
|
|
|
0.41.1
|
|
|
|
|
------
|
|
|
|
|
- Fixed a bug where preview window is not updated when `--disabled` is set and
|
|
|
|
|
a reload is triggered by `change:reload` binding
|
|
|
|
|
|
2023-05-01 04:53:34 +00:00
|
|
|
|
0.41.0
|
|
|
|
|
------
|
2023-05-16 14:45:31 +00:00
|
|
|
|
- Added color name `preview-border` and `preview-scrollbar`
|
|
|
|
|
- Added new border style `block` which uses [block elements](https://en.wikipedia.org/wiki/Block_Elements)
|
2023-05-16 14:53:10 +00:00
|
|
|
|
- `--scrollbar` can take two characters, one for the main window, the other
|
|
|
|
|
for the preview window
|
2023-05-25 15:08:07 +00:00
|
|
|
|
- Putting it altogether:
|
2023-05-16 14:53:10 +00:00
|
|
|
|
```sh
|
|
|
|
|
fzf-tmux -p 80% --padding 1,2 --preview 'bat --style=plain --color=always {}' \
|
2023-05-25 15:08:07 +00:00
|
|
|
|
--color 'bg:237,bg+:235,gutter:237,border:238,scrollbar:236' \
|
|
|
|
|
--color 'preview-bg:235,preview-border:236,preview-scrollbar:234' \
|
2023-05-16 14:53:10 +00:00
|
|
|
|
--preview-window 'border-block' --border block --scrollbar '▌▐'
|
|
|
|
|
```
|
2023-05-01 07:18:26 +00:00
|
|
|
|
- Bug fixes and improvements
|
2023-05-01 04:53:34 +00:00
|
|
|
|
|
2023-04-22 13:01:00 +00:00
|
|
|
|
0.40.0
|
2023-04-12 04:23:10 +00:00
|
|
|
|
------
|
2023-04-26 06:13:08 +00:00
|
|
|
|
- Added `zero` event that is triggered when there's no match
|
|
|
|
|
```sh
|
|
|
|
|
# Reload the candidate list when there's no match
|
|
|
|
|
echo $RANDOM | fzf --bind 'zero:reload(echo $RANDOM)+clear-query' --height 3
|
|
|
|
|
```
|
2023-04-22 13:01:00 +00:00
|
|
|
|
- New actions
|
2023-04-22 14:39:35 +00:00
|
|
|
|
- Added `track` action which makes fzf track the current item when the
|
|
|
|
|
search result is updated. If the user manually moves the cursor, or the
|
|
|
|
|
item is not in the updated search result, tracking is automatically
|
|
|
|
|
disabled. Tracking is useful when you want to see the surrounding items
|
|
|
|
|
by deleting the query string.
|
2023-04-22 13:01:00 +00:00
|
|
|
|
```sh
|
2023-04-22 14:39:35 +00:00
|
|
|
|
# Narrow down the list with a query, point to a command,
|
|
|
|
|
# and hit CTRL-T to see its surrounding commands.
|
2023-04-22 13:01:00 +00:00
|
|
|
|
export FZF_CTRL_R_OPTS="
|
|
|
|
|
--preview 'echo {}' --preview-window up:3:hidden:wrap
|
|
|
|
|
--bind 'ctrl-/:toggle-preview'
|
2023-04-22 14:39:35 +00:00
|
|
|
|
--bind 'ctrl-t:track+clear-query'
|
2023-04-22 13:01:00 +00:00
|
|
|
|
--bind 'ctrl-y:execute-silent(echo -n {2..} | pbcopy)+abort'
|
|
|
|
|
--color header:italic
|
|
|
|
|
--header 'Press CTRL-Y to copy command into clipboard'"
|
|
|
|
|
```
|
2023-04-22 14:39:35 +00:00
|
|
|
|
- Added `change-header(...)`
|
|
|
|
|
- Added `transform-header(...)`
|
|
|
|
|
- Added `toggle-track` action
|
2023-04-22 06:06:22 +00:00
|
|
|
|
- Fixed `--track` behavior when used with `--tac`
|
|
|
|
|
- However, using `--track` with `--tac` is not recommended. The resulting
|
|
|
|
|
behavior can be very confusing.
|
2023-04-12 04:23:10 +00:00
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
|
2023-03-19 06:42:47 +00:00
|
|
|
|
0.39.0
|
|
|
|
|
------
|
2023-04-01 08:16:02 +00:00
|
|
|
|
- Added `one` event that is triggered when there's only one match
|
|
|
|
|
```sh
|
|
|
|
|
# Automatically select the only match
|
|
|
|
|
seq 10 | fzf --bind one:accept
|
|
|
|
|
```
|
2023-03-29 11:36:09 +00:00
|
|
|
|
- Added `--track` option that makes fzf track the current selection when the
|
|
|
|
|
result list is updated. This can be useful when browsing logs using fzf with
|
|
|
|
|
sorting disabled.
|
|
|
|
|
```sh
|
|
|
|
|
git log --oneline --graph --color=always | nl |
|
|
|
|
|
fzf --ansi --track --no-sort --layout=reverse-list
|
|
|
|
|
```
|
2023-03-19 06:42:47 +00:00
|
|
|
|
- If you use `--listen` option without a port number fzf will automatically
|
|
|
|
|
allocate an available port and export it as `$FZF_PORT` environment
|
|
|
|
|
variable.
|
|
|
|
|
```sh
|
|
|
|
|
# Automatic port assignment
|
|
|
|
|
fzf --listen --bind 'start:execute-silent:echo $FZF_PORT > /tmp/fzf-port'
|
|
|
|
|
|
|
|
|
|
# Say hello
|
|
|
|
|
curl "localhost:$(cat /tmp/fzf-port)" -d 'preview:echo Hello, fzf is listening on $FZF_PORT.'
|
|
|
|
|
```
|
2023-03-25 01:23:05 +00:00
|
|
|
|
- A carriage return and a line feed character will be rendered as dim ␍ and
|
|
|
|
|
␊ respectively.
|
|
|
|
|
```sh
|
|
|
|
|
printf "foo\rbar\nbaz" | fzf --read0 --preview 'echo {}'
|
|
|
|
|
```
|
|
|
|
|
- fzf will stop rendering a non-displayable characters as a space. This will
|
|
|
|
|
likely cause less glitches in the preview window.
|
|
|
|
|
```sh
|
|
|
|
|
fzf --preview 'head -1000 /dev/random'
|
|
|
|
|
```
|
|
|
|
|
- Bug fixes and improvements
|
2023-03-19 06:42:47 +00:00
|
|
|
|
|
2023-01-31 08:33:53 +00:00
|
|
|
|
0.38.0
|
2023-01-30 12:39:18 +00:00
|
|
|
|
------
|
2023-01-31 08:33:53 +00:00
|
|
|
|
- New actions
|
2023-02-11 11:21:10 +00:00
|
|
|
|
- `become(...)` - Replace the current fzf process with the specified
|
2023-02-12 15:57:51 +00:00
|
|
|
|
command using `execve(2)` system call.
|
2023-02-15 14:20:18 +00:00
|
|
|
|
See https://github.com/junegunn/fzf#turning-into-a-different-process for
|
|
|
|
|
more information.
|
2023-02-11 11:21:10 +00:00
|
|
|
|
```sh
|
2023-02-15 14:20:18 +00:00
|
|
|
|
# Open selected files in Vim
|
|
|
|
|
fzf --multi --bind 'enter:become(vim {+})'
|
|
|
|
|
|
2023-02-12 15:57:51 +00:00
|
|
|
|
# Open the file in Vim and go to the line
|
|
|
|
|
git grep --line-number . |
|
|
|
|
|
fzf --delimiter : --nth 3.. --bind 'enter:become(vim {1} +{2})'
|
2023-02-11 11:21:10 +00:00
|
|
|
|
```
|
|
|
|
|
- This action is not supported on Windows
|
2023-01-31 08:33:53 +00:00
|
|
|
|
- `show-preview`
|
|
|
|
|
- `hide-preview`
|
2023-01-30 12:39:18 +00:00
|
|
|
|
- Bug fixes
|
|
|
|
|
- `--preview-window 0,hidden` should not execute the preview command until
|
|
|
|
|
`toggle-preview` action is triggered
|
|
|
|
|
|
2023-01-21 16:56:29 +00:00
|
|
|
|
0.37.0
|
2023-01-21 13:20:26 +00:00
|
|
|
|
------
|
2023-01-24 08:40:08 +00:00
|
|
|
|
- Added a way to customize the separator of inline info
|
|
|
|
|
```sh
|
|
|
|
|
fzf --info 'inline: ╱ ' --prompt '╱ ' --color prompt:bright-yellow
|
|
|
|
|
```
|
2023-01-23 07:22:25 +00:00
|
|
|
|
- New event
|
|
|
|
|
- `focus` - Triggered when the focus changes due to a vertical cursor
|
|
|
|
|
movement or a search result update
|
|
|
|
|
```sh
|
2023-01-24 13:11:14 +00:00
|
|
|
|
fzf --bind 'focus:transform-preview-label:echo [ {} ]' --preview 'cat {}'
|
2023-01-23 07:22:25 +00:00
|
|
|
|
|
|
|
|
|
# Any action bound to the event runs synchronously and thus can make the interface sluggish
|
|
|
|
|
# e.g. lolcat isn't one of the fastest programs, and every cursor movement in
|
|
|
|
|
# fzf will be noticeably affected by its execution time
|
2023-01-24 13:11:14 +00:00
|
|
|
|
fzf --bind 'focus:transform-preview-label:echo [ {} ] | lolcat -f' --preview 'cat {}'
|
2023-01-23 07:22:25 +00:00
|
|
|
|
|
|
|
|
|
# Beware not to introduce an infinite loop
|
|
|
|
|
seq 10 | fzf --bind 'focus:up' --cycle
|
|
|
|
|
```
|
2023-01-21 16:56:29 +00:00
|
|
|
|
- New actions
|
|
|
|
|
- `change-border-label`
|
|
|
|
|
- `change-preview-label`
|
|
|
|
|
- `transform-border-label`
|
|
|
|
|
- `transform-preview-label`
|
2023-01-21 13:20:26 +00:00
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
|
2022-12-10 15:59:34 +00:00
|
|
|
|
0.36.0
|
2022-11-29 11:24:18 +00:00
|
|
|
|
------
|
2022-12-25 07:27:02 +00:00
|
|
|
|
- Added `--listen=HTTP_PORT` option to start HTTP server. It allows external
|
2022-12-25 10:53:53 +00:00
|
|
|
|
processes to send actions to perform via POST method.
|
2022-12-17 15:22:15 +00:00
|
|
|
|
```sh
|
|
|
|
|
# Start HTTP server on port 6266
|
|
|
|
|
fzf --listen 6266
|
|
|
|
|
|
2022-12-25 10:53:53 +00:00
|
|
|
|
# Send actions to the server
|
|
|
|
|
curl -XPOST localhost:6266 -d 'reload(seq 100)+change-prompt(hundred> )'
|
2022-12-17 15:22:15 +00:00
|
|
|
|
```
|
2023-01-06 06:36:12 +00:00
|
|
|
|
- Added draggable scrollbar to the main search window and the preview window
|
2023-01-01 05:48:14 +00:00
|
|
|
|
```sh
|
|
|
|
|
# Hide scrollbar
|
|
|
|
|
fzf --no-scrollbar
|
|
|
|
|
|
|
|
|
|
# Customize scrollbar
|
|
|
|
|
fzf --scrollbar ┆ --color scrollbar:blue
|
|
|
|
|
```
|
2022-12-29 11:03:51 +00:00
|
|
|
|
- New event
|
|
|
|
|
- Added `load` event that is triggered when the input stream is complete
|
|
|
|
|
and the initial processing of the list is complete.
|
|
|
|
|
```sh
|
|
|
|
|
# Change the prompt to "loaded" when the input stream is complete
|
|
|
|
|
(seq 10; sleep 1; seq 11 20) | fzf --prompt 'Loading> ' --bind 'load:change-prompt:Loaded> '
|
2022-12-26 16:01:06 +00:00
|
|
|
|
|
2022-12-29 11:03:51 +00:00
|
|
|
|
# You can use it instead of 'start' event without `--sync` if asynchronous
|
|
|
|
|
# trigger is not an issue.
|
|
|
|
|
(seq 10; sleep 1; seq 11 20) | fzf --bind 'load:last'
|
|
|
|
|
```
|
|
|
|
|
- New actions
|
|
|
|
|
- Added `pos(...)` action to move the cursor to the numeric position
|
|
|
|
|
- `first` and `last` are equivalent to `pos(1)` and `pos(-1)` respectively
|
|
|
|
|
```sh
|
|
|
|
|
# Put the cursor on the 10th item
|
|
|
|
|
seq 100 | fzf --sync --bind 'start:pos(10)'
|
2022-12-29 11:01:50 +00:00
|
|
|
|
|
2022-12-29 11:03:51 +00:00
|
|
|
|
# Put the cursor on the 10th to last item
|
|
|
|
|
seq 100 | fzf --sync --bind 'start:pos(-10)'
|
|
|
|
|
```
|
|
|
|
|
- Added `reload-sync(...)` action which replaces the current list only after
|
|
|
|
|
the reload process is complete. This is useful when the command takes
|
|
|
|
|
a while to produce the initial output and you don't want fzf to run against
|
|
|
|
|
an empty list while the command is running.
|
|
|
|
|
```sh
|
|
|
|
|
# You can still filter and select entries from the initial list for 3 seconds
|
|
|
|
|
seq 100 | fzf --bind 'load:reload-sync(sleep 3; seq 1000)+unbind(load)'
|
|
|
|
|
```
|
|
|
|
|
- Added `next-selected` and `prev-selected` actions to move between selected
|
|
|
|
|
items
|
|
|
|
|
```sh
|
|
|
|
|
# `next-selected` will move the pointer to the next selected item below the current line
|
|
|
|
|
# `prev-selected` will move the pointer to the previous selected item above the current line
|
|
|
|
|
seq 10 | fzf --multi --bind ctrl-n:next-selected,ctrl-p:prev-selected
|
2022-12-10 15:59:34 +00:00
|
|
|
|
|
2022-12-29 11:03:51 +00:00
|
|
|
|
# Both actions respect --layout option
|
|
|
|
|
seq 10 | fzf --multi --bind ctrl-n:next-selected,ctrl-p:prev-selected --layout reverse
|
|
|
|
|
```
|
|
|
|
|
- Added `change-query(...)` action that simply changes the query string to the
|
|
|
|
|
given static string. This can be useful when used with `--listen`.
|
|
|
|
|
```sh
|
|
|
|
|
curl localhost:6266 -d "change-query:$(date)"
|
|
|
|
|
```
|
2022-12-31 00:27:11 +00:00
|
|
|
|
- Added `transform-prompt(...)` action for transforming the prompt string
|
|
|
|
|
using an external command
|
|
|
|
|
```sh
|
|
|
|
|
# Press space to change the prompt string using an external command
|
|
|
|
|
# (only the first line of the output is taken)
|
|
|
|
|
fzf --bind 'space:reload(ls),load:transform-prompt(printf "%s> " "$(date)")'
|
|
|
|
|
```
|
2022-12-29 11:03:51 +00:00
|
|
|
|
- Added `transform-query(...)` action for transforming the query string using
|
|
|
|
|
an external command
|
|
|
|
|
```sh
|
|
|
|
|
# Press space to convert the query to uppercase letters
|
2022-12-30 08:12:55 +00:00
|
|
|
|
fzf --bind 'space:transform-query(tr "[:lower:]" "[:upper:]" <<< {q})'
|
2022-12-27 15:05:31 +00:00
|
|
|
|
|
2022-12-29 11:03:51 +00:00
|
|
|
|
# Bind it to 'change' event for automatic conversion
|
2022-12-30 08:12:55 +00:00
|
|
|
|
fzf --bind 'change:transform-query(tr "[:lower:]" "[:upper:]" <<< {q})'
|
2022-12-27 15:05:31 +00:00
|
|
|
|
|
2022-12-29 11:03:51 +00:00
|
|
|
|
# Can only type numbers
|
2022-12-30 08:12:55 +00:00
|
|
|
|
fzf --bind 'change:transform-query(sed "s/[^0-9]//g" <<< {q})'
|
2022-12-29 11:03:51 +00:00
|
|
|
|
```
|
|
|
|
|
- `put` action can optionally take an argument string
|
|
|
|
|
```sh
|
|
|
|
|
# a will put 'alpha' on the prompt, ctrl-b will put 'bravo'
|
|
|
|
|
fzf --bind 'a:put+put(lpha),ctrl-b:put(bravo)'
|
|
|
|
|
```
|
2023-01-15 16:22:02 +00:00
|
|
|
|
- Added color name `preview-label` for `--preview-label` (defaults to `label`
|
|
|
|
|
for `--border-label`)
|
|
|
|
|
- Better support for (Windows) terminals where each box-drawing character
|
2023-04-22 07:29:25 +00:00
|
|
|
|
takes 2 columns. Set `RUNEWIDTH_EASTASIAN` environment variable to `0` or `1`.
|
2023-01-16 15:57:53 +00:00
|
|
|
|
- On Vim, the variable will be automatically set if `&ambiwidth` is `double`
|
2022-12-30 00:57:10 +00:00
|
|
|
|
- Behavior changes
|
|
|
|
|
- fzf will always execute the preview command if the command template
|
|
|
|
|
contains `{q}` even when it's empty. If you prefer the old behavior,
|
|
|
|
|
you'll have to check if `{q}` is empty in your command.
|
|
|
|
|
```sh
|
|
|
|
|
# This will show // even when the query is empty
|
|
|
|
|
: | fzf --preview 'echo /{q}/'
|
|
|
|
|
|
|
|
|
|
# But if you don't want it,
|
|
|
|
|
: | fzf --preview '[ -n {q} ] || exit; echo /{q}/'
|
|
|
|
|
```
|
2022-12-29 11:03:51 +00:00
|
|
|
|
- `double-click` will behave the same as `enter` unless otherwise specified,
|
|
|
|
|
so you don't have to repeat the same action twice in `--bind` in most cases.
|
|
|
|
|
```sh
|
|
|
|
|
# No need to bind 'double-click' to the same action
|
|
|
|
|
fzf --bind 'enter:execute:less {}' # --bind 'double-click:execute:less {}'
|
|
|
|
|
```
|
2023-01-01 08:38:34 +00:00
|
|
|
|
- If the color for `separator` is not specified, it will default to the
|
|
|
|
|
color for `border`. Same holds true for `scrollbar`. This is to reduce
|
|
|
|
|
the number of configuration items required to achieve a consistent color
|
|
|
|
|
scheme.
|
2023-01-12 14:12:26 +00:00
|
|
|
|
- If `follow` flag is specified in `--preview-window` option, fzf will
|
|
|
|
|
automatically scroll to the bottom of the streaming preview output. But
|
|
|
|
|
when the user manually scrolls the window, the following stops. With
|
|
|
|
|
this version, fzf will resume following if the user scrolls the window
|
|
|
|
|
to the bottom.
|
2023-01-15 16:22:02 +00:00
|
|
|
|
- Default border style on Windows is changed to `sharp` because some
|
|
|
|
|
Windows terminals are not capable of displaying `rounded` border
|
|
|
|
|
characters correctly.
|
2022-12-04 13:14:11 +00:00
|
|
|
|
- Minor bug fixes and improvements
|
2022-11-29 11:24:18 +00:00
|
|
|
|
|
2022-11-18 07:18:11 +00:00
|
|
|
|
0.35.1
|
|
|
|
|
------
|
|
|
|
|
- Fixed a bug where fzf with `--tiebreak=chunk` crashes on inverse match query
|
2022-11-18 11:31:12 +00:00
|
|
|
|
- Fixed a bug where clicking above fzf would paste escape sequences
|
2022-11-18 07:18:11 +00:00
|
|
|
|
|
2022-10-26 15:33:05 +00:00
|
|
|
|
0.35.0
|
|
|
|
|
------
|
|
|
|
|
- Added `start` event that is triggered only once when fzf finder starts.
|
|
|
|
|
Since fzf consumes the input stream asynchronously, the input list is not
|
|
|
|
|
available unless you use `--sync`.
|
|
|
|
|
```sh
|
|
|
|
|
seq 100 | fzf --multi --sync --bind 'start:last+select-all+preview(echo welcome)'
|
|
|
|
|
```
|
2022-10-29 15:12:01 +00:00
|
|
|
|
- Added `--border-label` and `--border-label-pos` for putting label on the border
|
|
|
|
|
```sh
|
|
|
|
|
# ANSI color codes are supported
|
|
|
|
|
# (with https://github.com/busyloop/lolcat)
|
|
|
|
|
label=$(curl -s http://metaphorpsum.com/sentences/1 | lolcat -f)
|
|
|
|
|
|
|
|
|
|
# Border label at the center
|
2022-10-30 15:22:41 +00:00
|
|
|
|
fzf --height=10 --border --border-label="╢ $label ╟" --color=label:italic:black
|
2022-10-29 15:12:01 +00:00
|
|
|
|
|
|
|
|
|
# Left-aligned (positive integer)
|
2022-10-30 15:22:41 +00:00
|
|
|
|
fzf --height=10 --border --border-label="╢ $label ╟" --border-label-pos=3 --color=label:italic:black
|
2022-10-29 15:12:01 +00:00
|
|
|
|
|
2022-10-30 15:22:41 +00:00
|
|
|
|
# Right-aligned (negative integer) on the bottom line (:bottom)
|
|
|
|
|
fzf --height=10 --border --border-label="╢ $label ╟" --border-label-pos=-3:bottom --color=label:italic:black
|
2022-10-29 15:12:01 +00:00
|
|
|
|
```
|
2022-10-30 11:44:46 +00:00
|
|
|
|
- Also added `--preview-label` and `--preview-label-pos` for the border of the
|
2022-11-01 04:33:09 +00:00
|
|
|
|
preview window
|
2022-10-30 15:22:41 +00:00
|
|
|
|
```sh
|
|
|
|
|
fzf --preview 'cat {}' --border --preview-label=' Preview ' --preview-label-pos=2
|
|
|
|
|
```
|
2022-11-10 07:23:33 +00:00
|
|
|
|
- Info panel (match counter) will be followed by a horizontal separator by
|
|
|
|
|
default
|
|
|
|
|
- Use `--no-separator` or `--separator=''` to hide the separator
|
|
|
|
|
- You can specify an arbitrary string that is repeated to form the
|
|
|
|
|
horizontal separator. e.g. `--separator=╸`
|
2022-10-30 07:28:58 +00:00
|
|
|
|
- The color of the separator can be customized via `--color=separator:...`
|
2022-11-10 07:23:33 +00:00
|
|
|
|
- ANSI color codes are also supported
|
|
|
|
|
```sh
|
|
|
|
|
fzf --separator=╸ --color=separator:green
|
|
|
|
|
fzf --separator=$(lolcat -f -F 1.4 <<< ▁▁▂▃▄▅▆▆▅▄▃▂▁▁) --info=inline
|
|
|
|
|
```
|
2022-11-06 05:38:31 +00:00
|
|
|
|
- Added `--border=bold` and `--border=double` along with
|
|
|
|
|
`--preview-window=border-bold` and `--preview-window=border-double`
|
2022-10-26 15:33:05 +00:00
|
|
|
|
|
2022-09-07 16:01:22 +00:00
|
|
|
|
0.34.0
|
|
|
|
|
------
|
|
|
|
|
- Added support for adaptive `--height`. If the `--height` value is prefixed
|
|
|
|
|
with `~`, fzf will automatically determine the height in the range according
|
|
|
|
|
to the input size.
|
|
|
|
|
```sh
|
|
|
|
|
seq 1 | fzf --height ~70% --border --padding 1 --margin 1
|
|
|
|
|
seq 10 | fzf --height ~70% --border --padding 1 --margin 1
|
|
|
|
|
seq 100 | fzf --height ~70% --border --padding 1 --margin 1
|
|
|
|
|
```
|
|
|
|
|
- There are a few limitations
|
|
|
|
|
- Not compatible with percent top/bottom margin/padding
|
|
|
|
|
```sh
|
|
|
|
|
# This is not allowed (top/bottom margin in percent value)
|
|
|
|
|
fzf --height ~50% --border --margin 5%,10%
|
|
|
|
|
|
|
|
|
|
# This is allowed (top/bottom margin in fixed value)
|
|
|
|
|
fzf --height ~50% --border --margin 2,10%
|
|
|
|
|
```
|
|
|
|
|
- fzf will not start until it can determine the right height for the input
|
|
|
|
|
```sh
|
|
|
|
|
# fzf will open immediately
|
|
|
|
|
(sleep 2; seq 10) | fzf --height 50%
|
|
|
|
|
|
|
|
|
|
# fzf will open after 2 seconds
|
|
|
|
|
(sleep 2; seq 10) | fzf --height ~50%
|
|
|
|
|
(sleep 2; seq 1000) | fzf --height ~50%
|
|
|
|
|
```
|
|
|
|
|
- Fixed tcell renderer used to render full-screen fzf on Windows
|
2023-08-25 08:59:50 +00:00
|
|
|
|
- ~~`--no-clear` is deprecated. Use `reload` action instead.~~
|
2022-09-07 16:01:22 +00:00
|
|
|
|
|
2022-08-28 13:16:57 +00:00
|
|
|
|
0.33.0
|
2022-08-12 13:18:10 +00:00
|
|
|
|
------
|
2022-08-28 13:16:57 +00:00
|
|
|
|
- Added `--scheme=[default|path|history]` option to choose scoring scheme
|
|
|
|
|
- (Experimental)
|
|
|
|
|
- We updated the scoring algorithm in 0.32.0, however we have learned that
|
|
|
|
|
this new scheme (`default`) is not always giving the optimal result
|
2022-08-30 04:28:01 +00:00
|
|
|
|
- `path`: Additional bonus point is only given to the characters after
|
2022-08-28 13:16:57 +00:00
|
|
|
|
path separator. You might want to choose this scheme if you have many
|
|
|
|
|
files with spaces in their paths.
|
|
|
|
|
- `history`: No additional bonus points are given so that we give more
|
|
|
|
|
weight to the chronological ordering. This is equivalent to the scoring
|
|
|
|
|
scheme before 0.32.0. This also sets `--tiebreak=index`.
|
2022-08-12 13:18:10 +00:00
|
|
|
|
- ANSI color sequences with colon delimiters are now supported.
|
|
|
|
|
```sh
|
|
|
|
|
printf "\e[38;5;208mOption 1\e[m\nOption 2" | fzf --ansi
|
|
|
|
|
printf "\e[38:5:208mOption 1\e[m\nOption 2" | fzf --ansi
|
|
|
|
|
```
|
2022-08-18 00:19:02 +00:00
|
|
|
|
- Support `border-{up,down}` as the synonyms for `border-{top,bottom}` in
|
|
|
|
|
`--preview-window`
|
2022-08-20 21:23:03 +00:00
|
|
|
|
- Added support for ANSI `strikethrough`
|
|
|
|
|
```sh
|
|
|
|
|
printf "\e[9mdeleted" | fzf --ansi
|
|
|
|
|
fzf --color fg+:strikethrough
|
|
|
|
|
```
|
2022-08-12 13:18:10 +00:00
|
|
|
|
|
2022-08-03 13:18:26 +00:00
|
|
|
|
0.32.1
|
|
|
|
|
------
|
|
|
|
|
- Fixed incorrect ordering of `--tiebreak=chunk`
|
2022-08-07 01:28:45 +00:00
|
|
|
|
- fzf-tmux will show fzf border instead of tmux popup border (requires tmux 3.3)
|
|
|
|
|
```sh
|
|
|
|
|
fzf-tmux -p70%
|
|
|
|
|
fzf-tmux -p70% --color=border:bright-red
|
2022-08-08 04:39:37 +00:00
|
|
|
|
fzf-tmux -p100%,60% --color=border:bright-yellow --border=horizontal --padding 1,5 --margin 1,0
|
2022-08-07 01:28:45 +00:00
|
|
|
|
fzf-tmux -p70%,100% --color=border:bright-green --border=vertical
|
2022-08-08 04:39:37 +00:00
|
|
|
|
|
|
|
|
|
# Key bindings (CTRL-T, CTRL-R, ALT-C) will use these options
|
|
|
|
|
export FZF_TMUX_OPTS='-p100%,60% --color=border:green --border=horizontal --padding 1,5 --margin 1,0'
|
2022-08-07 01:28:45 +00:00
|
|
|
|
```
|
2022-08-03 13:18:26 +00:00
|
|
|
|
|
2022-07-30 13:11:21 +00:00
|
|
|
|
0.32.0
|
|
|
|
|
------
|
|
|
|
|
- Updated the scoring algorithm
|
|
|
|
|
- Different bonus points to different categories of word boundaries
|
|
|
|
|
(listed higher to lower bonus point)
|
|
|
|
|
- Word after whitespace characters or beginning of the string
|
|
|
|
|
- Word after common delimiter characters (`/,:;|`)
|
|
|
|
|
- Word after other non-word characters
|
2022-08-02 04:44:55 +00:00
|
|
|
|
```sh
|
2022-07-30 13:11:21 +00:00
|
|
|
|
# foo/bar.sh` is preferred over `foo-bar.sh` on `bar`
|
2022-08-02 04:44:55 +00:00
|
|
|
|
fzf --query=bar --height=4 << EOF
|
2022-07-30 13:11:21 +00:00
|
|
|
|
foo-bar.sh
|
|
|
|
|
foo/bar.sh
|
|
|
|
|
EOF
|
|
|
|
|
```
|
2022-08-02 04:44:55 +00:00
|
|
|
|
- Added a new tiebreak `chunk`
|
|
|
|
|
- Favors the line with shorter matched chunk. A chunk is a set of
|
|
|
|
|
consecutive non-whitespace characters.
|
|
|
|
|
- Unlike the default `length`, this scheme works well with tabular input
|
|
|
|
|
```sh
|
|
|
|
|
# length prefers item #1, because the whole line is shorter,
|
|
|
|
|
# chunk prefers item #2, because the matched chunk ("foo") is shorter
|
|
|
|
|
fzf --height=6 --header-lines=2 --tiebreak=chunk --reverse --query=fo << "EOF"
|
|
|
|
|
N | Field1 | Field2 | Field3
|
|
|
|
|
- | ------ | ------ | ------
|
|
|
|
|
1 | hello | foobar | baz
|
|
|
|
|
2 | world | foo | bazbaz
|
|
|
|
|
EOF
|
|
|
|
|
```
|
|
|
|
|
- If the input does not contain any spaces, `chunk` is equivalent to
|
|
|
|
|
`length`. But we're not going to set it as the default because it is
|
|
|
|
|
computationally more expensive.
|
2022-07-30 13:11:21 +00:00
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
|
2022-06-17 03:47:42 +00:00
|
|
|
|
0.31.0
|
|
|
|
|
------
|
2022-07-20 03:08:54 +00:00
|
|
|
|
- Added support for an alternative preview window layout that is activated
|
|
|
|
|
when the size of the preview window is smaller than a certain threshold.
|
|
|
|
|
```sh
|
|
|
|
|
# If the width of the preview window is smaller than 50 columns,
|
|
|
|
|
# it will be displayed above the search window.
|
|
|
|
|
fzf --preview 'cat {}' --preview-window 'right,50%,border-left,<50(up,30%,border-bottom)'
|
|
|
|
|
|
|
|
|
|
# Or you can just hide it like so
|
|
|
|
|
fzf --preview 'cat {}' --preview-window '<50(hidden)'
|
|
|
|
|
```
|
2022-07-21 13:46:34 +00:00
|
|
|
|
- fzf now uses SGR mouse mode to properly support mouse on larger terminals
|
|
|
|
|
- You can now use characters that do not satisfy `unicode.IsGraphic` constraint
|
2022-07-21 13:24:11 +00:00
|
|
|
|
for `--marker`, `--pointer`, and `--ellipsis`. Allows Nerd Fonts and stuff.
|
|
|
|
|
Use at your own risk.
|
2022-06-17 03:47:42 +00:00
|
|
|
|
- Bug fixes and improvements
|
2022-07-21 13:16:19 +00:00
|
|
|
|
- Shell extension
|
|
|
|
|
- `kill` completion now requires trigger sequence (`**`) for consistency
|
2022-06-17 03:47:42 +00:00
|
|
|
|
|
2022-03-29 12:35:36 +00:00
|
|
|
|
0.30.0
|
|
|
|
|
------
|
2022-04-04 13:06:16 +00:00
|
|
|
|
- Fixed cursor flickering over the screen by hiding it during rendering
|
2022-03-29 12:35:36 +00:00
|
|
|
|
- Added `--ellipsis` option. You can take advantage of it to make fzf
|
|
|
|
|
effectively search non-visible parts of the item.
|
|
|
|
|
```sh
|
|
|
|
|
# Search against hidden line numbers on the far right
|
|
|
|
|
nl /usr/share/dict/words |
|
|
|
|
|
awk '{printf "%s%1000s\n", $2, $1}' |
|
|
|
|
|
fzf --nth=-1 --no-hscroll --ellipsis='' |
|
|
|
|
|
awk '{print $2}'
|
|
|
|
|
```
|
2022-04-04 12:54:22 +00:00
|
|
|
|
- Added `rebind` action for restoring bindings after `unbind`
|
2022-03-29 13:25:48 +00:00
|
|
|
|
- Bug fixes and improvements
|
2022-03-29 12:35:36 +00:00
|
|
|
|
|
2021-11-30 14:37:48 +00:00
|
|
|
|
0.29.0
|
|
|
|
|
------
|
|
|
|
|
- Added `change-preview(...)` action to change the `--preview` command
|
|
|
|
|
- cf. `preview(...)` is a one-off action that doesn't change the default
|
|
|
|
|
preview command
|
|
|
|
|
- Added `change-preview-window(...)` action
|
2021-12-04 02:46:15 +00:00
|
|
|
|
- You can rotate through the different options separated by `|`
|
|
|
|
|
```sh
|
2021-12-24 16:46:01 +00:00
|
|
|
|
fzf --preview 'cat {}' --preview-window right:40% \
|
|
|
|
|
--bind 'ctrl-/:change-preview-window(right,70%|down,40%,border-top|hidden|)'
|
2021-12-04 02:46:15 +00:00
|
|
|
|
```
|
2021-12-22 14:22:08 +00:00
|
|
|
|
- Fixed rendering of the prompt line when overflow occurs with `--info=inline`
|
2021-11-30 14:37:48 +00:00
|
|
|
|
|
2021-11-03 12:19:22 +00:00
|
|
|
|
0.28.0
|
2021-11-02 07:34:16 +00:00
|
|
|
|
------
|
2021-11-03 12:19:22 +00:00
|
|
|
|
- Added `--header-first` option to print header before the prompt line
|
|
|
|
|
```sh
|
|
|
|
|
fzf --header $'Welcome to fzf\n▔▔▔▔▔▔▔▔▔▔▔▔▔▔' --reverse --height 30% --border --header-first
|
|
|
|
|
```
|
2021-11-02 07:34:16 +00:00
|
|
|
|
- Added `--scroll-off=LINES` option (similar to `scrolloff` option of Vim)
|
|
|
|
|
- You can set it to a very large number so that the cursor stays in the
|
|
|
|
|
middle of the screen while scrolling
|
|
|
|
|
```sh
|
|
|
|
|
fzf --scroll-off=5
|
|
|
|
|
fzf --scroll-off=999
|
|
|
|
|
```
|
|
|
|
|
- Fixed bug where preview window is not updated on `reload` (#2644)
|
|
|
|
|
- fzf on Windows will also use `$SHELL` to execute external programs
|
|
|
|
|
- See #2638 and #2647
|
|
|
|
|
- Thanks to @rashil2000, @vovcacik, and @janlazo
|
|
|
|
|
|
2021-06-07 23:53:29 +00:00
|
|
|
|
0.27.3
|
|
|
|
|
------
|
|
|
|
|
- Preview window is `hidden` by default when there are `preview` bindings but
|
|
|
|
|
`--preview` command is not given
|
2021-09-14 07:58:26 +00:00
|
|
|
|
- Fixed bug where `{n}` is not properly reset on `reload`
|
2021-10-15 14:59:56 +00:00
|
|
|
|
- Fixed bug where spinner is not displayed on `reload`
|
|
|
|
|
- Enhancements in tcell renderer for Windows (#2616)
|
2021-06-07 23:53:29 +00:00
|
|
|
|
- Vim plugin
|
|
|
|
|
- `sinklist` is added as a synonym to `sink*` so that it's easier to add
|
|
|
|
|
a function to a spec dictionary
|
|
|
|
|
```vim
|
|
|
|
|
let spec = { 'source': 'ls', 'options': ['--multi', '--preview', 'cat {}'] }
|
|
|
|
|
function spec.sinklist(matches)
|
|
|
|
|
echom string(a:matches)
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
call fzf#run(fzf#wrap(spec))
|
|
|
|
|
```
|
2021-10-15 14:59:56 +00:00
|
|
|
|
- Vim 7 compatibility
|
2021-06-07 23:53:29 +00:00
|
|
|
|
|
2021-05-26 10:32:20 +00:00
|
|
|
|
0.27.2
|
|
|
|
|
------
|
|
|
|
|
- 16 base ANSI colors can be specified by their names
|
|
|
|
|
```sh
|
|
|
|
|
fzf --color fg:3,fg+:11
|
|
|
|
|
fzf --color fg:yellow,fg+:bright-yellow
|
|
|
|
|
```
|
2021-06-01 07:55:51 +00:00
|
|
|
|
- Fix bug where `--read0` not properly displaying long lines
|
2021-05-26 10:32:20 +00:00
|
|
|
|
|
2021-05-22 04:13:55 +00:00
|
|
|
|
0.27.1
|
|
|
|
|
------
|
|
|
|
|
- Added `unbind` action. In the following Ripgrep launcher example, you can
|
|
|
|
|
use `unbind(reload)` to switch to fzf-only filtering mode.
|
|
|
|
|
- See https://github.com/junegunn/fzf/blob/master/ADVANCED.md#switching-to-fzf-only-search-mode
|
|
|
|
|
- Vim plugin
|
|
|
|
|
- Vim plugin will stop immediately even when the source command hasn't finished
|
|
|
|
|
```vim
|
|
|
|
|
" fzf will read the stream file while allowing other processes to append to it
|
|
|
|
|
call fzf#run({'source': 'cat /dev/null > /tmp/stream; tail -f /tmp/stream'})
|
|
|
|
|
```
|
2021-08-14 11:33:22 +00:00
|
|
|
|
- It is now possible to open popup window relative to the current window
|
2021-05-22 04:13:55 +00:00
|
|
|
|
```vim
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6, 'relative': v:true, 'yoffset': 1.0 } }
|
|
|
|
|
```
|
|
|
|
|
|
2021-04-06 08:37:11 +00:00
|
|
|
|
0.27.0
|
|
|
|
|
------
|
|
|
|
|
- More border options for `--preview-window`
|
|
|
|
|
```sh
|
|
|
|
|
fzf --preview 'cat {}' --preview-window border-left
|
2021-04-06 13:53:59 +00:00
|
|
|
|
fzf --preview 'cat {}' --preview-window border-left --border horizontal
|
2021-04-06 08:37:11 +00:00
|
|
|
|
fzf --preview 'cat {}' --preview-window top:border-bottom
|
|
|
|
|
fzf --preview 'cat {}' --preview-window top:border-horizontal
|
|
|
|
|
```
|
2021-04-06 13:53:59 +00:00
|
|
|
|
- Automatically set `/dev/tty` as STDIN on execute action
|
|
|
|
|
```sh
|
|
|
|
|
# Redirect /dev/tty to suppress "Vim: Warning: Input is not from a terminal"
|
|
|
|
|
# ls | fzf --bind "enter:execute(vim {} < /dev/tty)"
|
|
|
|
|
|
|
|
|
|
# "< /dev/tty" part is no longer needed
|
|
|
|
|
ls | fzf --bind "enter:execute(vim {})"
|
|
|
|
|
```
|
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
- Signed and notarized macOS binaries
|
|
|
|
|
(Huge thanks to [BACKERS.md](https://github.com/junegunn/junegunn/blob/main/BACKERS.md)!)
|
2021-04-06 08:37:11 +00:00
|
|
|
|
|
2021-03-12 10:51:28 +00:00
|
|
|
|
0.26.0
|
2021-02-25 12:14:15 +00:00
|
|
|
|
------
|
2021-03-12 10:51:28 +00:00
|
|
|
|
- Added support for fixed header in preview window
|
|
|
|
|
```sh
|
|
|
|
|
# Display top 3 lines as the fixed header
|
|
|
|
|
fzf --preview 'bat --style=header,grid --color=always {}' --preview-window '~3'
|
|
|
|
|
```
|
2021-03-12 17:24:37 +00:00
|
|
|
|
- More advanced preview offset expression to better support the fixed header
|
|
|
|
|
```sh
|
|
|
|
|
# Preview with bat, matching line in the middle of the window below
|
|
|
|
|
# the fixed header of the top 3 lines
|
|
|
|
|
#
|
|
|
|
|
# ~3 Top 3 lines as the fixed header
|
|
|
|
|
# +{2} Base scroll offset extracted from the second field
|
|
|
|
|
# +3 Extra offset to compensate for the 3-line header
|
|
|
|
|
# /2 Put in the middle of the preview area
|
|
|
|
|
#
|
|
|
|
|
git grep --line-number '' |
|
|
|
|
|
fzf --delimiter : \
|
|
|
|
|
--preview 'bat --style=full --color=always --highlight-line {2} {1}' \
|
|
|
|
|
--preview-window '~3:+{2}+3/2'
|
|
|
|
|
```
|
2021-02-28 09:27:21 +00:00
|
|
|
|
- Added `select` and `deselect` action for unconditionally selecting or
|
2021-02-25 12:14:15 +00:00
|
|
|
|
deselecting a single item in `--multi` mode. Complements `toggle` action.
|
2021-08-14 11:33:22 +00:00
|
|
|
|
- Significant performance improvement in ANSI code processing
|
2021-03-12 10:51:28 +00:00
|
|
|
|
- Bug fixes and improvements
|
2021-02-25 12:14:15 +00:00
|
|
|
|
- Built with Go 1.16
|
|
|
|
|
|
2021-02-01 15:08:54 +00:00
|
|
|
|
0.25.1
|
|
|
|
|
------
|
|
|
|
|
- Added `close` action
|
|
|
|
|
- Close preview window if open, abort fzf otherwise
|
2021-02-03 13:32:52 +00:00
|
|
|
|
- Bug fixes and improvements
|
2021-02-01 15:08:54 +00:00
|
|
|
|
|
2021-01-02 15:00:40 +00:00
|
|
|
|
0.25.0
|
2020-12-07 10:35:48 +00:00
|
|
|
|
------
|
|
|
|
|
- Text attributes set in `--color` are not reset when fzf sees another
|
|
|
|
|
`--color` option for the same element. This allows you to put custom text
|
|
|
|
|
attributes in your `$FZF_DEFAULT_OPTS` and still have those attributes
|
|
|
|
|
even when you override the colors.
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
# Default colors and attributes
|
|
|
|
|
fzf
|
|
|
|
|
|
|
|
|
|
# Apply custom text attributes
|
|
|
|
|
export FZF_DEFAULT_OPTS='--color fg+:italic,hl:-1:underline,hl+:-1:reverse:underline'
|
|
|
|
|
|
|
|
|
|
fzf
|
|
|
|
|
|
|
|
|
|
# Different colors but you still have the attributes
|
|
|
|
|
fzf --color hl:176,hl+:177
|
|
|
|
|
|
|
|
|
|
# Write "regular" if you want to clear the attributes
|
|
|
|
|
fzf --color hl:176:regular,hl+:177:regular
|
|
|
|
|
```
|
2021-01-02 15:00:40 +00:00
|
|
|
|
- Renamed `--phony` to `--disabled`
|
|
|
|
|
- You can dynamically enable and disable the search functionality using the
|
|
|
|
|
new `enable-search`, `disable-search`, and `toggle-search` actions
|
|
|
|
|
- You can assign a different color to the query string for when search is disabled
|
|
|
|
|
```sh
|
|
|
|
|
fzf --color query:#ffffff,disabled:#999999 --bind space:toggle-search
|
|
|
|
|
```
|
2020-12-29 16:51:25 +00:00
|
|
|
|
- Added `last` action to move the cursor to the last match
|
|
|
|
|
- The opposite action `top` is renamed to `first`, but `top` is still
|
|
|
|
|
recognized as a synonym for backward compatibility
|
2020-12-31 03:54:58 +00:00
|
|
|
|
- Added `preview-top` and `preview-bottom` actions
|
2020-12-29 16:59:18 +00:00
|
|
|
|
- Extended support for alt key chords: alt with any case-sensitive single character
|
|
|
|
|
```sh
|
|
|
|
|
fzf --bind alt-,:first,alt-.:last
|
|
|
|
|
```
|
2020-12-07 10:35:48 +00:00
|
|
|
|
|
2020-12-04 11:34:41 +00:00
|
|
|
|
0.24.4
|
|
|
|
|
------
|
2020-12-05 12:16:35 +00:00
|
|
|
|
- Added `--preview-window` option `follow`
|
|
|
|
|
```sh
|
|
|
|
|
# Preview window will automatically scroll to the bottom
|
|
|
|
|
fzf --preview-window follow --preview 'for i in $(seq 100000); do
|
|
|
|
|
echo "$i"
|
|
|
|
|
sleep 0.01
|
|
|
|
|
(( i % 300 == 0 )) && printf "\033[2J"
|
|
|
|
|
done'
|
|
|
|
|
```
|
2020-12-04 11:34:41 +00:00
|
|
|
|
- Added `change-prompt` action
|
|
|
|
|
```sh
|
|
|
|
|
fzf --prompt 'foo> ' --bind $'a:change-prompt:\x1b[31mbar> '
|
|
|
|
|
```
|
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
|
2020-11-09 11:34:08 +00:00
|
|
|
|
0.24.3
|
|
|
|
|
------
|
|
|
|
|
- Added `--padding` option
|
|
|
|
|
```sh
|
|
|
|
|
fzf --margin 5% --padding 5% --border --preview 'cat {}' \
|
|
|
|
|
--color bg:#222222,preview-bg:#333333
|
|
|
|
|
```
|
|
|
|
|
|
2020-11-03 12:31:19 +00:00
|
|
|
|
0.24.2
|
|
|
|
|
------
|
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
|
2020-10-28 16:40:46 +00:00
|
|
|
|
0.24.1
|
|
|
|
|
------
|
|
|
|
|
- Fixed broken `--color=[bw|no]` option
|
|
|
|
|
|
2020-10-18 08:03:33 +00:00
|
|
|
|
0.24.0
|
|
|
|
|
------
|
2020-10-23 12:37:20 +00:00
|
|
|
|
- Real-time rendering of preview window
|
2020-10-18 08:03:33 +00:00
|
|
|
|
```sh
|
2020-10-23 12:37:20 +00:00
|
|
|
|
# fzf can render preview window before the command completes
|
2020-10-18 08:03:33 +00:00
|
|
|
|
fzf --preview 'sleep 1; for i in $(seq 100); do echo $i; sleep 0.01; done'
|
2020-10-23 12:37:20 +00:00
|
|
|
|
|
|
|
|
|
# Preview window can process ANSI escape sequence (CSI 2 J) for clearing the display
|
|
|
|
|
fzf --preview 'for i in $(seq 100000); do
|
|
|
|
|
(( i % 200 == 0 )) && printf "\033[2J"
|
|
|
|
|
echo "$i"
|
|
|
|
|
sleep 0.01
|
|
|
|
|
done'
|
|
|
|
|
```
|
2020-10-25 15:15:30 +00:00
|
|
|
|
- Updated `--color` option to support text styles
|
2020-10-25 10:29:37 +00:00
|
|
|
|
- `regular` / `bold` / `dim` / `underline` / `italic` / `reverse` / `blink`
|
|
|
|
|
```sh
|
2020-10-25 15:15:30 +00:00
|
|
|
|
# * Set -1 to keep the original color
|
|
|
|
|
# * Multiple style attributes can be combined
|
|
|
|
|
# * Italic style may not be supported by some terminals
|
2020-10-25 10:29:37 +00:00
|
|
|
|
rg --line-number --no-heading --color=always "" |
|
|
|
|
|
fzf --ansi --prompt "Rg: " \
|
2020-10-26 16:46:43 +00:00
|
|
|
|
--color fg+:italic,hl:underline:-1,hl+:italic:underline:reverse:-1 \
|
2020-10-25 15:21:48 +00:00
|
|
|
|
--color pointer:reverse,prompt:reverse,input:159 \
|
2020-10-25 15:15:30 +00:00
|
|
|
|
--pointer ' '
|
2020-10-25 10:29:37 +00:00
|
|
|
|
```
|
2020-10-26 13:33:41 +00:00
|
|
|
|
- More `--border` options
|
|
|
|
|
- `vertical`, `top`, `bottom`, `left`, `right`
|
2020-10-27 04:53:24 +00:00
|
|
|
|
- Updated Vim plugin to use these new `--border` options
|
|
|
|
|
```vim
|
|
|
|
|
" Floating popup window in the center of the screen
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } }
|
|
|
|
|
|
|
|
|
|
" Popup with 100% width
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 1.0, 'height': 0.5, 'border': 'horizontal' } }
|
|
|
|
|
|
|
|
|
|
" Popup with 100% height
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.5, 'height': 1.0, 'border': 'vertical' } }
|
|
|
|
|
|
|
|
|
|
" Similar to 'down' layout, but it uses a popup window and doesn't affect the window layout
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 1.0, 'height': 0.5, 'yoffset': 1.0, 'border': 'top' } }
|
|
|
|
|
|
|
|
|
|
" Opens on the right;
|
|
|
|
|
" 'highlight' option is still supported but it will only take the foreground color of the group
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.5, 'height': 1.0, 'xoffset': 1.0, 'border': 'left', 'highlight': 'Comment' } }
|
|
|
|
|
```
|
2020-10-23 12:37:20 +00:00
|
|
|
|
- To indicate if `--multi` mode is enabled, fzf will print the number of
|
|
|
|
|
selected items even when no item is selected
|
|
|
|
|
```sh
|
|
|
|
|
seq 100 | fzf
|
|
|
|
|
# 100/100
|
|
|
|
|
seq 100 | fzf --multi
|
|
|
|
|
# 100/100 (0)
|
|
|
|
|
seq 100 | fzf --multi 5
|
|
|
|
|
# 100/100 (0/5)
|
2020-10-18 08:03:33 +00:00
|
|
|
|
```
|
2020-10-27 04:53:24 +00:00
|
|
|
|
- Since 0.24.0, release binaries will be uploaded to https://github.com/junegunn/fzf/releases
|
2020-10-18 08:03:33 +00:00
|
|
|
|
|
2020-10-09 10:53:51 +00:00
|
|
|
|
0.23.1
|
|
|
|
|
------
|
2020-10-09 12:56:16 +00:00
|
|
|
|
- Added `--preview-window` options for disabling flags
|
|
|
|
|
- `nocycle`
|
|
|
|
|
- `nohidden`
|
|
|
|
|
- `nowrap`
|
2020-10-10 16:51:39 +00:00
|
|
|
|
- `default`
|
2020-10-10 17:04:07 +00:00
|
|
|
|
- Built with Go 1.14.9 due to performance regression
|
|
|
|
|
- https://github.com/golang/go/issues/40727
|
2020-10-09 10:53:51 +00:00
|
|
|
|
|
2020-10-07 10:07:09 +00:00
|
|
|
|
0.23.0
|
2020-08-23 06:57:49 +00:00
|
|
|
|
------
|
|
|
|
|
- Support preview scroll offset relative to window height
|
|
|
|
|
```sh
|
|
|
|
|
git grep --line-number '' |
|
|
|
|
|
fzf --delimiter : \
|
|
|
|
|
--preview 'bat --style=numbers --color=always --highlight-line {2} {1}' \
|
|
|
|
|
--preview-window +{2}-/2
|
|
|
|
|
```
|
2020-08-23 08:05:45 +00:00
|
|
|
|
- Added `--preview-window` option for sharp edges (`--preview-window sharp`)
|
2020-10-06 01:05:57 +00:00
|
|
|
|
- Added `--preview-window` option for cyclic scrolling (`--preview-window cycle`)
|
2020-08-23 08:05:45 +00:00
|
|
|
|
- Reduced vertical padding around the preview window when `--preview-window
|
|
|
|
|
noborder` is used
|
2020-10-05 12:58:56 +00:00
|
|
|
|
- Added actions for preview window
|
|
|
|
|
- `preview-half-page-up`
|
|
|
|
|
- `preview-half-page-down`
|
2020-09-08 15:06:53 +00:00
|
|
|
|
- Vim
|
|
|
|
|
- Popup width and height can be given in absolute integer values
|
|
|
|
|
- Added `fzf#exec()` function for getting the path of fzf executable
|
|
|
|
|
- It also downloads the latest binary if it's not available by running
|
|
|
|
|
`./install --bin`
|
2020-10-07 10:07:09 +00:00
|
|
|
|
- Built with Go 1.15.2
|
|
|
|
|
- We no longer provide 32-bit binaries
|
2020-08-23 06:57:49 +00:00
|
|
|
|
|
2020-08-02 06:56:02 +00:00
|
|
|
|
0.22.0
|
2020-06-30 12:17:19 +00:00
|
|
|
|
------
|
|
|
|
|
- Added more options for `--bind`
|
|
|
|
|
- `backward-eof` event
|
|
|
|
|
```sh
|
|
|
|
|
# Aborts when you delete backward when the query prompt is already empty
|
|
|
|
|
fzf --bind backward-eof:abort
|
|
|
|
|
```
|
|
|
|
|
- `refresh-preview` action
|
|
|
|
|
```sh
|
|
|
|
|
# Rerun preview command when you hit '?'
|
|
|
|
|
fzf --preview 'echo $RANDOM' --bind '?:refresh-preview'
|
|
|
|
|
```
|
|
|
|
|
- `preview` action
|
|
|
|
|
```sh
|
|
|
|
|
# Default preview command with an extra preview binding
|
|
|
|
|
fzf --preview 'file {}' --bind '?:preview:cat {}'
|
|
|
|
|
|
|
|
|
|
# A preview binding with no default preview command
|
|
|
|
|
# (Preview window is initially empty)
|
|
|
|
|
fzf --bind '?:preview:cat {}'
|
|
|
|
|
|
|
|
|
|
# Preview window hidden by default, it appears when you first hit '?'
|
|
|
|
|
fzf --bind '?:preview:cat {}' --preview-window hidden
|
|
|
|
|
```
|
2020-07-26 15:15:25 +00:00
|
|
|
|
- Added preview window option for setting the initial scroll offset
|
|
|
|
|
```sh
|
|
|
|
|
# Initial scroll offset is set to the line number of each line of
|
|
|
|
|
# git grep output *minus* 5 lines
|
|
|
|
|
git grep --line-number '' |
|
|
|
|
|
fzf --delimiter : --preview 'nl {1}' --preview-window +{2}-5
|
|
|
|
|
```
|
2020-07-05 07:16:46 +00:00
|
|
|
|
- Added support for ANSI colors in `--prompt` string
|
2020-07-28 04:06:57 +00:00
|
|
|
|
- Smart match of accented characters
|
|
|
|
|
- An unaccented character in the query string will match both accented and
|
|
|
|
|
unaccented characters, while an accented character will only match
|
|
|
|
|
accented characters. This is similar to how "smart-case" match works.
|
2020-06-30 12:17:19 +00:00
|
|
|
|
- Vim plugin
|
|
|
|
|
- `tmux` layout option for using fzf-tmux
|
|
|
|
|
```vim
|
|
|
|
|
let g:fzf_layout = { 'tmux': '-p90%,60%' }
|
|
|
|
|
```
|
|
|
|
|
|
2020-04-03 08:33:29 +00:00
|
|
|
|
0.21.1
|
|
|
|
|
------
|
|
|
|
|
- Shell extension
|
|
|
|
|
- CTRL-R will remove duplicate commands
|
|
|
|
|
- fzf-tmux
|
|
|
|
|
- Supports tmux popup window (require tmux 3.2 or above)
|
|
|
|
|
- ```sh
|
|
|
|
|
# 50% width and height
|
|
|
|
|
fzf-tmux -p
|
|
|
|
|
|
|
|
|
|
# 80% width and height
|
|
|
|
|
fzf-tmux -p 80%
|
|
|
|
|
|
|
|
|
|
# 80% width and 40% height
|
|
|
|
|
fzf-tmux -p 80%,40%
|
|
|
|
|
fzf-tmux -w 80% -h 40%
|
|
|
|
|
|
|
|
|
|
# Window position
|
|
|
|
|
fzf-tmux -w 80% -h 40% -x 0 -y 0
|
|
|
|
|
fzf-tmux -w 80% -h 40% -y 1000
|
|
|
|
|
|
|
|
|
|
# Write ordinary fzf options after --
|
|
|
|
|
fzf-tmux -p -- --reverse --info=inline --margin 2,4 --border
|
|
|
|
|
```
|
|
|
|
|
- On macOS, you can build the latest tmux from the source with
|
|
|
|
|
`brew install tmux --HEAD`
|
|
|
|
|
- Bug fixes
|
|
|
|
|
- Fixed Windows file traversal not to include directories
|
|
|
|
|
- Fixed ANSI colors with `--keep-right`
|
|
|
|
|
- Fixed _fzf_complete for zsh
|
|
|
|
|
- Built with Go 1.14.1
|
|
|
|
|
|
2020-03-12 04:15:45 +00:00
|
|
|
|
0.21.0
|
|
|
|
|
------
|
|
|
|
|
- `--height` option is now available on Windows as well (@kelleyma49)
|
|
|
|
|
- Added `--pointer` and `--marker` options
|
|
|
|
|
- Added `--keep-right` option that keeps the right end of the line visible
|
|
|
|
|
when it's too long
|
2020-03-05 14:12:27 +00:00
|
|
|
|
- Style changes
|
|
|
|
|
- `--border` will now print border with rounded corners around the
|
|
|
|
|
finder instead of printing horizontal lines above and below it.
|
|
|
|
|
The previous style is available via `--border=horizontal`
|
2020-03-12 04:15:45 +00:00
|
|
|
|
- Unicode spinner
|
2020-03-05 14:12:27 +00:00
|
|
|
|
- More keys and actions for `--bind`
|
2020-03-12 04:15:45 +00:00
|
|
|
|
- Added PowerShell script for downloading Windows binary
|
|
|
|
|
- Vim plugin: Built-in floating windows support
|
|
|
|
|
```vim
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } }
|
|
|
|
|
```
|
2020-03-05 14:12:27 +00:00
|
|
|
|
- bash: Various improvements in key bindings (CTRL-T, CTRL-R, ALT-C)
|
2020-03-12 04:15:45 +00:00
|
|
|
|
- CTRL-R will start with the current command-line as the initial query
|
|
|
|
|
- CTRL-R properly supports multi-line commands
|
2020-03-11 09:29:39 +00:00
|
|
|
|
- Fuzzy completion API changed
|
|
|
|
|
```sh
|
|
|
|
|
# Previous: fzf arguments given as a single string argument
|
2020-03-12 04:15:45 +00:00
|
|
|
|
# - This style is still supported, but it's deprecated
|
2020-03-11 09:29:39 +00:00
|
|
|
|
_fzf_complete "--multi --reverse --prompt=\"doge> \"" "$@" < <(
|
|
|
|
|
echo foo
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# New API: multiple fzf arguments before "--"
|
2020-03-12 04:15:45 +00:00
|
|
|
|
# - Easier to write multiple options
|
2020-03-11 09:29:39 +00:00
|
|
|
|
_fzf_complete --multi --reverse --prompt="doge> " -- "$@" < <(
|
|
|
|
|
echo foo
|
|
|
|
|
)
|
|
|
|
|
```
|
2020-03-12 04:15:45 +00:00
|
|
|
|
- Bug fixes and improvements
|
2020-03-05 14:12:27 +00:00
|
|
|
|
|
2019-12-17 16:07:25 +00:00
|
|
|
|
0.20.0
|
2019-11-21 14:06:14 +00:00
|
|
|
|
------
|
2019-12-12 14:03:17 +00:00
|
|
|
|
- Customizable preview window color (`preview-fg` and `preview-bg` for `--color`)
|
|
|
|
|
```sh
|
|
|
|
|
fzf --preview 'cat {}' \
|
|
|
|
|
--color 'fg:#bbccdd,fg+:#ddeeff,bg:#334455,preview-bg:#223344,border:#778899' \
|
|
|
|
|
--border --height 20 --layout reverse --info inline
|
|
|
|
|
```
|
2019-12-05 13:25:43 +00:00
|
|
|
|
- Removed the immediate flicking of the screen on `reload` action.
|
|
|
|
|
```sh
|
|
|
|
|
: | fzf --bind 'change:reload:seq {q}' --phony
|
|
|
|
|
```
|
2019-12-07 05:44:24 +00:00
|
|
|
|
- Added `clear-query` and `clear-selection` actions for `--bind`
|
2019-11-21 14:06:14 +00:00
|
|
|
|
- It is now possible to split a composite bind action over multiple `--bind`
|
|
|
|
|
expressions by prefixing the later ones with `+`.
|
|
|
|
|
```sh
|
|
|
|
|
fzf --bind 'ctrl-a:up+up'
|
|
|
|
|
|
|
|
|
|
# Can be now written as
|
|
|
|
|
fzf --bind 'ctrl-a:up' --bind 'ctrl-a:+up'
|
|
|
|
|
|
|
|
|
|
# This is useful when you need to write special execute/reload form (i.e. `execute:...`)
|
|
|
|
|
# to avoid parse errors and add more actions to the same key
|
|
|
|
|
fzf --multi --bind 'ctrl-l:select-all+execute:less {+f}' --bind 'ctrl-l:+deselect-all'
|
|
|
|
|
```
|
|
|
|
|
- Fixed parse error of `--bind` expression where concatenated execute/reload
|
|
|
|
|
action contains `+` character.
|
|
|
|
|
```sh
|
|
|
|
|
fzf --multi --bind 'ctrl-l:select-all+execute(less {+f})+deselect-all'
|
|
|
|
|
```
|
2019-12-06 13:34:45 +00:00
|
|
|
|
- Fixed bugs of reload action
|
|
|
|
|
- Not triggered when there's no match even when the command doesn't have
|
|
|
|
|
any placeholder expressions
|
|
|
|
|
- Screen not properly cleared when `--header-lines` not filled on reload
|
2019-11-21 14:06:14 +00:00
|
|
|
|
|
2019-11-12 16:27:39 +00:00
|
|
|
|
0.19.0
|
|
|
|
|
------
|
|
|
|
|
|
2019-11-15 16:23:01 +00:00
|
|
|
|
- Added `--phony` option which completely disables search functionality.
|
|
|
|
|
Useful when you want to use fzf only as a selector interface. See below.
|
2019-11-12 16:27:39 +00:00
|
|
|
|
- Added "reload" action for dynamically updating the input list without
|
|
|
|
|
restarting fzf. See https://github.com/junegunn/fzf/issues/1750 to learn
|
|
|
|
|
more about it.
|
|
|
|
|
```sh
|
|
|
|
|
# Using fzf as the selector interface for ripgrep
|
|
|
|
|
RG_PREFIX="rg --column --line-number --no-heading --color=always --smart-case "
|
|
|
|
|
INITIAL_QUERY="foo"
|
2019-11-15 16:23:01 +00:00
|
|
|
|
FZF_DEFAULT_COMMAND="$RG_PREFIX '$INITIAL_QUERY' || true" \
|
2019-11-12 16:27:39 +00:00
|
|
|
|
fzf --bind "change:reload:$RG_PREFIX {q} || true" \
|
|
|
|
|
--ansi --phony --query "$INITIAL_QUERY"
|
|
|
|
|
```
|
|
|
|
|
- `--multi` now takes an optional integer argument which indicates the maximum
|
|
|
|
|
number of items that can be selected
|
|
|
|
|
```sh
|
|
|
|
|
seq 100 | fzf --multi 3 --reverse --height 50%
|
|
|
|
|
```
|
|
|
|
|
- If a placeholder expression for `--preview` and `execute` action (and the
|
|
|
|
|
new `reload` action) contains `f` flag, it is replaced to the
|
|
|
|
|
path of a temporary file that holds the evaluated list. This is useful
|
|
|
|
|
when you multi-select a large number of items and the length of the
|
|
|
|
|
evaluated string may exceed [`ARG_MAX`][argmax].
|
|
|
|
|
```sh
|
|
|
|
|
# Press CTRL-A to select 100K items and see the sum of all the numbers
|
|
|
|
|
seq 100000 | fzf --multi --bind ctrl-a:select-all \
|
|
|
|
|
--preview "awk '{sum+=\$1} END {print sum}' {+f}"
|
|
|
|
|
```
|
|
|
|
|
- `deselect-all` no longer deselects unmatched items. It is now consistent
|
|
|
|
|
with `select-all` and `toggle-all` in that it only affects matched items.
|
|
|
|
|
- Due to the limitation of bash, fuzzy completion is enabled by default for
|
|
|
|
|
a fixed set of commands. A helper function for easily setting up fuzzy
|
|
|
|
|
completion for any command is now provided.
|
|
|
|
|
```sh
|
|
|
|
|
# usage: _fzf_setup_completion path|dir COMMANDS...
|
|
|
|
|
_fzf_setup_completion path git kubectl
|
|
|
|
|
```
|
2019-11-14 15:39:29 +00:00
|
|
|
|
- Info line style can be changed by `--info=STYLE`
|
|
|
|
|
- `--info=default`
|
|
|
|
|
- `--info=inline` (same as old `--inline-info`)
|
|
|
|
|
- `--info=hidden`
|
2019-11-15 02:37:52 +00:00
|
|
|
|
- Preview window border can be disabled by adding `noborder` to
|
|
|
|
|
`--preview-window`.
|
2019-11-12 16:27:39 +00:00
|
|
|
|
- When you transform the input with `--with-nth`, the trailing white spaces
|
|
|
|
|
are removed.
|
2019-11-14 13:39:25 +00:00
|
|
|
|
- `ctrl-\`, `ctrl-]`, `ctrl-^`, and `ctrl-/` can now be used with `--bind`
|
2019-11-12 16:27:39 +00:00
|
|
|
|
- See https://github.com/junegunn/fzf/milestone/15?closed=1 for more details
|
|
|
|
|
|
|
|
|
|
[argmax]: https://unix.stackexchange.com/questions/120642/what-defines-the-maximum-size-for-a-command-single-argument
|
|
|
|
|
|
2019-03-31 02:22:38 +00:00
|
|
|
|
0.18.0
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Added placeholder expression for zero-based item index: `{n}` and `{+n}`
|
|
|
|
|
- `fzf --preview 'echo {n}: {}'`
|
|
|
|
|
- Added color option for the gutter: `--color gutter:-1`
|
|
|
|
|
- Added `--no-unicode` option for drawing borders in non-Unicode, ASCII
|
|
|
|
|
characters
|
|
|
|
|
- `FZF_PREVIEW_LINES` and `FZF_PREVIEW_COLUMNS` are exported to preview process
|
|
|
|
|
- fzf still overrides `LINES` and `COLUMNS` as before, but they may be
|
|
|
|
|
reset by the default shell.
|
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
- See https://github.com/junegunn/fzf/milestone/14?closed=1
|
|
|
|
|
- Built with Go 1.12.1
|
|
|
|
|
|
2018-10-06 16:43:05 +00:00
|
|
|
|
0.17.5
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
- See https://github.com/junegunn/fzf/milestone/13?closed=1
|
|
|
|
|
- Search query longer than the screen width is allowed (up to 300 chars)
|
|
|
|
|
- Built with Go 1.11.1
|
|
|
|
|
|
2018-06-10 01:35:52 +00:00
|
|
|
|
0.17.4
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Added `--layout` option with a new layout called `reverse-list`.
|
|
|
|
|
- `--layout=reverse` is a synonym for `--reverse`
|
|
|
|
|
- `--layout=default` is a synonym for `--no-reverse`
|
|
|
|
|
- Preview window will be updated even when there is no match for the query
|
|
|
|
|
if any of the placeholder expressions (e.g. `{q}`, `{+}`) evaluates to
|
|
|
|
|
a non-empty string.
|
|
|
|
|
- More keys for binding: `shift-{up,down}`, `alt-{up,down,left,right}`
|
|
|
|
|
- fzf can now start even when `/dev/tty` is not available by making an
|
|
|
|
|
educated guess.
|
|
|
|
|
- Updated the default command for Windows.
|
|
|
|
|
- Fixes and improvements on bash/zsh completion
|
|
|
|
|
- install and uninstall scripts now supports generating files under
|
|
|
|
|
`XDG_CONFIG_HOME` on `--xdg` flag.
|
|
|
|
|
|
|
|
|
|
See https://github.com/junegunn/fzf/milestone/12?closed=1 for the full list of
|
|
|
|
|
changes.
|
|
|
|
|
|
2017-12-03 14:55:24 +00:00
|
|
|
|
0.17.3
|
|
|
|
|
------
|
|
|
|
|
- `$LINES` and `$COLUMNS` are exported to preview command so that the command
|
|
|
|
|
knows the exact size of the preview window.
|
|
|
|
|
- Better error messages when the default command or `$FZF_DEFAULT_COMMAND`
|
|
|
|
|
fails.
|
|
|
|
|
- Reverted #1061 to avoid having duplicate entries in the list when find
|
|
|
|
|
command detected a file system loop (#1120). The default command now
|
|
|
|
|
requires that find supports `-fstype` option.
|
|
|
|
|
- fzf now distinguishes mouse left click and right click (#1130)
|
|
|
|
|
- Right click is now bound to `toggle` action by default
|
|
|
|
|
- `--bind` understands `left-click` and `right-click`
|
|
|
|
|
- Added `replace-query` action (#1137)
|
|
|
|
|
- Replaces query string with the current selection
|
|
|
|
|
- Added `accept-non-empty` action (#1162)
|
|
|
|
|
- Same as accept, except that it prevents fzf from exiting without any
|
|
|
|
|
selection
|
|
|
|
|
|
2017-10-15 16:58:57 +00:00
|
|
|
|
0.17.1
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Fixed custom background color of preview window (#1046)
|
|
|
|
|
- Fixed background color issues of Windows binary
|
|
|
|
|
- Fixed Windows binary to execute command using cmd.exe with no parsing and
|
|
|
|
|
escaping (#1072)
|
|
|
|
|
- Added support for `window` layout on Vim 8 using Vim 8 terminal (#1055)
|
|
|
|
|
|
2017-09-05 04:40:13 +00:00
|
|
|
|
0.17.0-2
|
|
|
|
|
--------
|
|
|
|
|
|
|
|
|
|
A maintenance release for auxiliary scripts. fzf binaries are not updated.
|
|
|
|
|
|
|
|
|
|
- Experimental support for the builtin terminal of Vim 8
|
|
|
|
|
- fzf can now run inside GVim
|
|
|
|
|
- Updated Vim plugin to better handle `&shell` issue on fish
|
|
|
|
|
- Fixed a bug of fzf-tmux where invalid output is generated
|
|
|
|
|
- Fixed fzf-tmux to work even when `tput` does not work
|
|
|
|
|
|
2017-08-26 18:32:21 +00:00
|
|
|
|
0.17.0
|
|
|
|
|
------
|
|
|
|
|
- Performance optimization
|
|
|
|
|
- One can match literal spaces in extended-search mode with a space prepended
|
|
|
|
|
by a backslash.
|
|
|
|
|
- `--expect` is now additive and can be specified multiple times.
|
|
|
|
|
|
2017-08-01 17:44:06 +00:00
|
|
|
|
0.16.11
|
|
|
|
|
-------
|
|
|
|
|
- Performance optimization
|
|
|
|
|
- Fixed missing preview update
|
|
|
|
|
|
2017-07-21 09:41:11 +00:00
|
|
|
|
0.16.10
|
|
|
|
|
-------
|
|
|
|
|
- Fixed invalid handling of ANSI colors in preview window
|
|
|
|
|
- Further improved `--ansi` performance
|
|
|
|
|
|
2017-07-20 15:08:55 +00:00
|
|
|
|
0.16.9
|
|
|
|
|
------
|
|
|
|
|
- Memory and performance optimization
|
|
|
|
|
- Around 20% performance improvement for general use cases
|
|
|
|
|
- Up to 5x faster processing of `--ansi`
|
|
|
|
|
- Up to 50% reduction of memory usage
|
|
|
|
|
- Bug fixes and usability improvements
|
|
|
|
|
- Fixed handling of bracketed paste mode
|
|
|
|
|
- [ERROR] on info line when the default command failed
|
|
|
|
|
- More efficient rendering of preview window
|
|
|
|
|
- `--no-clear` updated for repetitive relaunching scenarios
|
|
|
|
|
|
2017-06-05 14:21:50 +00:00
|
|
|
|
0.16.8
|
|
|
|
|
------
|
|
|
|
|
- New `change` event and `top` action for `--bind`
|
|
|
|
|
- `fzf --bind change:top`
|
|
|
|
|
- Move cursor to the top result whenever the query string is changed
|
2017-06-08 01:02:34 +00:00
|
|
|
|
- `fzf --bind 'ctrl-w:unix-word-rubout+top,ctrl-u:unix-line-discard+top'`
|
|
|
|
|
- `top` combined with `unix-word-rubout` and `unix-line-discard`
|
2017-06-05 14:21:50 +00:00
|
|
|
|
- Fixed inconsistent tiebreak scores when `--nth` is used
|
|
|
|
|
- Proper display of tab characters in `--prompt`
|
|
|
|
|
- Fixed not to `--cycle` on page-up/page-down to prevent overshoot
|
|
|
|
|
- Git revision in `--version` output
|
|
|
|
|
- Basic support for Cygwin environment
|
|
|
|
|
- Many fixes in Vim plugin on Windows/Cygwin (thanks to @janlazo)
|
|
|
|
|
|
2017-04-30 02:54:40 +00:00
|
|
|
|
0.16.7
|
|
|
|
|
------
|
|
|
|
|
- Added support for `ctrl-alt-[a-z]` key chords
|
|
|
|
|
- CTRL-Z (SIGSTOP) now works with fzf
|
|
|
|
|
- fzf will export `$FZF_PREVIEW_WINDOW` so that the scripts can use it
|
|
|
|
|
- Bug fixes and improvements in Vim plugin and shell extensions
|
|
|
|
|
|
2017-03-04 18:05:06 +00:00
|
|
|
|
0.16.6
|
|
|
|
|
------
|
|
|
|
|
- Minor bug fixes and improvements
|
|
|
|
|
- Added `--no-clear` option for scripting purposes
|
|
|
|
|
|
2017-02-18 14:49:00 +00:00
|
|
|
|
0.16.5
|
|
|
|
|
------
|
|
|
|
|
- Minor bug fixes
|
|
|
|
|
- Added `toggle-preview-wrap` action
|
2017-02-18 16:40:25 +00:00
|
|
|
|
- Built with Go 1.8
|
2017-02-18 14:49:00 +00:00
|
|
|
|
|
2017-02-04 12:51:22 +00:00
|
|
|
|
0.16.4
|
|
|
|
|
------
|
|
|
|
|
- Added `--border` option to draw border above and below the finder
|
|
|
|
|
- Bug fixes and improvements
|
|
|
|
|
|
2017-01-27 07:38:42 +00:00
|
|
|
|
0.16.3
|
|
|
|
|
------
|
|
|
|
|
- Fixed a bug where fzf incorrectly display the lines when straddling tab
|
|
|
|
|
characters are trimmed
|
|
|
|
|
- Placeholder expression used in `--preview` and `execute` action can
|
|
|
|
|
optionally take `+` flag to be used with multiple selections
|
|
|
|
|
- e.g. `git log --oneline | fzf --multi --preview 'git show {+1}'`
|
2017-01-27 08:46:56 +00:00
|
|
|
|
- Added `execute-silent` action for executing a command silently without
|
|
|
|
|
switching to the alternate screen. This is useful when the process is
|
|
|
|
|
short-lived and you're not interested in its output.
|
|
|
|
|
- e.g. `fzf --bind 'ctrl-y:execute!(echo -n {} | pbcopy)'`
|
2017-01-27 17:54:47 +00:00
|
|
|
|
- `ctrl-space` is allowed in `--bind`
|
2017-01-27 07:38:42 +00:00
|
|
|
|
|
2017-01-21 17:32:49 +00:00
|
|
|
|
0.16.2
|
|
|
|
|
------
|
2017-01-22 05:13:37 +00:00
|
|
|
|
- Dropped ncurses dependency
|
|
|
|
|
- Binaries for freebsd, openbsd, arm5, arm6, arm7, and arm8
|
2017-01-23 15:37:47 +00:00
|
|
|
|
- Official 24-bit color support
|
2017-01-21 17:32:49 +00:00
|
|
|
|
- Added support for composite actions in `--bind`. Multiple actions can be
|
|
|
|
|
chained using `+` separator.
|
|
|
|
|
- e.g. `fzf --bind 'ctrl-y:execute(echo -n {} | pbcopy)+abort'`
|
2017-01-23 15:23:16 +00:00
|
|
|
|
- `--preview-window` with size 0 is allowed. This is used to make fzf execute
|
|
|
|
|
preview command in the background without displaying the result.
|
2017-01-23 15:37:47 +00:00
|
|
|
|
- Minor bug fixes and improvements
|
2017-01-21 17:32:49 +00:00
|
|
|
|
|
2017-01-16 03:12:59 +00:00
|
|
|
|
0.16.1
|
|
|
|
|
------
|
|
|
|
|
- Fixed `--height` option to properly fill the window with the background
|
|
|
|
|
color
|
|
|
|
|
- Added `half-page-up` and `half-page-down` actions
|
|
|
|
|
- Added `-L` flag to the default find command
|
|
|
|
|
|
2017-01-07 16:30:31 +00:00
|
|
|
|
0.16.0
|
|
|
|
|
------
|
2017-01-15 17:39:37 +00:00
|
|
|
|
- *Added `--height HEIGHT[%]` option*
|
|
|
|
|
- fzf can now display finder without occupying the full screen
|
2017-01-07 16:30:31 +00:00
|
|
|
|
- Preview window will truncate long lines by default. Line wrap can be enabled
|
|
|
|
|
by `:wrap` flag in `--preview-window`.
|
2017-01-15 04:22:09 +00:00
|
|
|
|
- Latin script letters will be normalized before matching so that it's easier
|
|
|
|
|
to match against accented letters. e.g. `sodanco` can match `Só Danço Samba`.
|
|
|
|
|
- Normalization can be disabled via `--literal`
|
2017-01-15 10:42:28 +00:00
|
|
|
|
- Added `--filepath-word` to make word-wise movements/actions (`alt-b`,
|
|
|
|
|
`alt-f`, `alt-bs`, `alt-d`) respect path separators
|
2017-01-07 16:30:31 +00:00
|
|
|
|
|
2016-11-26 03:25:27 +00:00
|
|
|
|
0.15.9
|
|
|
|
|
------
|
|
|
|
|
- Fixed rendering glitches introduced in 0.15.8
|
|
|
|
|
- The default escape delay is reduced to 50ms and is configurable via
|
|
|
|
|
`$ESCDELAY`
|
|
|
|
|
- Scroll indicator at the top-right corner of the preview window is always
|
|
|
|
|
displayed when there's overflow
|
|
|
|
|
- Can now be built with ncurses 6 or tcell to support extra features
|
|
|
|
|
- *ncurses 6*
|
|
|
|
|
- Supports more than 256 color pairs
|
|
|
|
|
- Supports italics
|
|
|
|
|
- *tcell*
|
|
|
|
|
- 24-bit color support
|
2016-11-27 06:16:53 +00:00
|
|
|
|
- See https://github.com/junegunn/fzf/blob/master/BUILD.md
|
2016-11-26 03:25:27 +00:00
|
|
|
|
|
2016-11-19 14:13:26 +00:00
|
|
|
|
0.15.8
|
|
|
|
|
------
|
|
|
|
|
- Updated ANSI processor to handle more VT-100 escape sequences
|
|
|
|
|
- Added `--no-bold` (and `--bold`) option
|
|
|
|
|
- Improved escape sequence processing for WSL
|
|
|
|
|
- Added support for `alt-[0-9]`, `f11`, and `f12` for `--bind` and `--expect`
|
|
|
|
|
|
2016-11-09 03:41:46 +00:00
|
|
|
|
0.15.7
|
|
|
|
|
------
|
|
|
|
|
- Fixed panic when color is disabled and header lines contain ANSI colors
|
|
|
|
|
|
2016-11-08 16:45:27 +00:00
|
|
|
|
0.15.6
|
|
|
|
|
------
|
|
|
|
|
- Windows binaries! (@kelleyma49)
|
|
|
|
|
- Fixed the bug where header lines are cleared when preview window is toggled
|
|
|
|
|
- Fixed not to display ^N and ^O on screen
|
|
|
|
|
- Fixed cursor keys (or any key sequence that starts with ESC) on WSL by
|
|
|
|
|
making fzf wait for additional keystrokes after ESC for up to 100ms
|
|
|
|
|
|
2016-10-23 13:00:32 +00:00
|
|
|
|
0.15.5
|
|
|
|
|
------
|
|
|
|
|
- Setting foreground color will no longer set background color to black
|
|
|
|
|
- e.g. `fzf --color fg:153`
|
|
|
|
|
- `--tiebreak=end` will consider relative position instead of absolute distance
|
|
|
|
|
- Updated `fzf#wrap` function to respect `g:fzf_colors`
|
|
|
|
|
|
2016-10-03 17:17:36 +00:00
|
|
|
|
0.15.4
|
|
|
|
|
------
|
|
|
|
|
- Added support for range expression in preview and execute action
|
|
|
|
|
- e.g. `ls -l | fzf --preview="echo user={3} when={-4..-2}; cat {-1}" --header-lines=1`
|
|
|
|
|
- `{q}` will be replaced to the single-quoted string of the current query
|
|
|
|
|
- Fixed to properly handle unicode whitespace characters
|
|
|
|
|
- Display scroll indicator in preview window
|
|
|
|
|
- Inverse search term will use exact matcher by default
|
|
|
|
|
- This is a breaking change, but I believe it makes much more sense. It is
|
|
|
|
|
almost impossible to predict which entries will be filtered out due to
|
|
|
|
|
a fuzzy inverse term. You can still perform inverse-fuzzy-match by
|
|
|
|
|
prepending `!'` to the term.
|
|
|
|
|
|
2016-09-28 17:53:05 +00:00
|
|
|
|
0.15.3
|
|
|
|
|
------
|
|
|
|
|
- Added support for more ANSI attributes: dim, underline, blink, and reverse
|
|
|
|
|
- Fixed race condition in `toggle-preview`
|
|
|
|
|
|
2016-09-25 13:20:43 +00:00
|
|
|
|
0.15.2
|
|
|
|
|
------
|
|
|
|
|
- Preview window is now scrollable
|
|
|
|
|
- With mouse scroll or with bindable actions
|
|
|
|
|
- `preview-up`
|
|
|
|
|
- `preview-down`
|
|
|
|
|
- `preview-page-up`
|
|
|
|
|
- `preview-page-down`
|
|
|
|
|
- Updated ANSI processor to support high intensity colors and ignore
|
|
|
|
|
some VT100-related escape sequences
|
|
|
|
|
|
2016-09-20 16:28:24 +00:00
|
|
|
|
0.15.1
|
|
|
|
|
------
|
|
|
|
|
- Fixed panic when the pattern occurs after 2^15-th column
|
|
|
|
|
- Fixed rendering delay when displaying extremely long lines
|
|
|
|
|
|
2016-09-07 00:58:18 +00:00
|
|
|
|
0.15.0
|
|
|
|
|
------
|
|
|
|
|
- Improved fuzzy search algorithm
|
|
|
|
|
- Added `--algo=[v1|v2]` option so one can still choose the old algorithm
|
|
|
|
|
which values the search performance over the quality of the result
|
|
|
|
|
- Advanced scoring criteria
|
2016-09-17 19:52:47 +00:00
|
|
|
|
- `--read0` to read input delimited by ASCII NUL character
|
|
|
|
|
- `--print0` to print output delimited by ASCII NUL character
|
2016-09-07 00:58:18 +00:00
|
|
|
|
|
2016-08-20 20:00:27 +00:00
|
|
|
|
0.13.5
|
|
|
|
|
------
|
|
|
|
|
- Memory and performance optimization
|
|
|
|
|
- Up to 2x performance with half the amount of memory
|
|
|
|
|
|
2016-08-14 09:06:00 +00:00
|
|
|
|
0.13.4
|
|
|
|
|
------
|
|
|
|
|
- Performance optimization
|
|
|
|
|
- Memory footprint for ascii string is reduced by 60%
|
|
|
|
|
- 15 to 20% improvement of query performance
|
|
|
|
|
- Up to 45% better performance of `--nth` with non-regex delimiters
|
|
|
|
|
- Fixed invalid handling of `hidden` property of `--preview-window`
|
|
|
|
|
|
2016-07-15 16:06:53 +00:00
|
|
|
|
0.13.3
|
|
|
|
|
------
|
|
|
|
|
- Fixed duplicate rendering of the last line in preview window
|
|
|
|
|
|
2016-06-15 17:16:13 +00:00
|
|
|
|
0.13.2
|
|
|
|
|
------
|
|
|
|
|
- Fixed race condition where preview window is not properly cleared
|
|
|
|
|
|
2016-06-14 12:53:00 +00:00
|
|
|
|
0.13.1
|
|
|
|
|
------
|
|
|
|
|
- Fixed UI issue with large `--preview` output with many ANSI codes
|
|
|
|
|
|
2016-06-11 17:15:11 +00:00
|
|
|
|
0.13.0
|
2016-06-07 15:54:21 +00:00
|
|
|
|
------
|
2016-06-11 17:15:11 +00:00
|
|
|
|
- Added preview feature
|
|
|
|
|
- `--preview CMD`
|
|
|
|
|
- `--preview-window POS[:SIZE][:hidden]`
|
|
|
|
|
- `{}` in execute action is now replaced to the single-quoted (instead of
|
|
|
|
|
double-quoted) string of the current line
|
|
|
|
|
- Fixed to ignore control characters for bracketed paste mode
|
2016-06-07 15:54:21 +00:00
|
|
|
|
|
2016-05-18 16:47:43 +00:00
|
|
|
|
0.12.2
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- 256-color capability detection does not require `256` in `$TERM`
|
|
|
|
|
- Added `print-query` action
|
|
|
|
|
- More named keys for binding; <kbd>F1</kbd> ~ <kbd>F10</kbd>,
|
|
|
|
|
<kbd>ALT-/</kbd>, <kbd>ALT-space</kbd>, and <kbd>ALT-enter</kbd>
|
|
|
|
|
- Added `jump` and `jump-accept` actions that implement [EasyMotion][em]-like
|
|
|
|
|
movement
|
|
|
|
|
![][jump]
|
|
|
|
|
|
|
|
|
|
[em]: https://github.com/easymotion/vim-easymotion
|
|
|
|
|
[jump]: https://cloud.githubusercontent.com/assets/700826/15367574/b3999dc4-1d64-11e6-85da-28ceeb1a9bc2.png
|
|
|
|
|
|
2016-04-24 16:23:52 +00:00
|
|
|
|
0.12.1
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Ranking algorithm introduced in 0.12.0 is now universally applied
|
|
|
|
|
- Fixed invalid cache reference in exact mode
|
|
|
|
|
- Fixes and improvements in Vim plugin and shell extensions
|
|
|
|
|
|
2016-04-16 05:37:16 +00:00
|
|
|
|
0.12.0
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Enhanced ranking algorithm
|
|
|
|
|
- Minor bug fixes
|
|
|
|
|
|
2016-03-02 16:57:28 +00:00
|
|
|
|
0.11.4
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Added `--hscroll-off=COL` option (default: 10) (#513)
|
|
|
|
|
- Some fixes in Vim plugin and shell extensions
|
|
|
|
|
|
2016-02-07 01:56:29 +00:00
|
|
|
|
0.11.3
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Graceful exit on SIGTERM (#482)
|
|
|
|
|
- `$SHELL` instead of `sh` for `execute` action and `$FZF_DEFAULT_COMMAND` (#481)
|
|
|
|
|
- Changes in fuzzy completion API
|
|
|
|
|
- [`_fzf_compgen_{path,dir}`](https://github.com/junegunn/fzf/commit/9617647)
|
|
|
|
|
- [`_fzf_complete_COMMAND_post`](https://github.com/junegunn/fzf/commit/8206746)
|
|
|
|
|
for post-processing
|
|
|
|
|
|
2016-01-12 18:07:42 +00:00
|
|
|
|
0.11.2
|
|
|
|
|
------
|
|
|
|
|
|
2016-01-13 16:32:03 +00:00
|
|
|
|
- `--tiebreak` now accepts comma-separated list of sort criteria
|
2016-01-12 18:07:42 +00:00
|
|
|
|
- Each criterion should appear only once in the list
|
|
|
|
|
- `index` is only allowed at the end of the list
|
|
|
|
|
- `index` is implicitly appended to the list when not specified
|
|
|
|
|
- Default is `length` (or equivalently `length,index`)
|
2016-01-13 16:32:03 +00:00
|
|
|
|
- `begin` criterion will ignore leading whitespaces when calculating the index
|
2016-01-13 17:54:08 +00:00
|
|
|
|
- Added `toggle-in` and `toggle-out` actions
|
|
|
|
|
- Switch direction depending on `--reverse`-ness
|
|
|
|
|
- `export FZF_DEFAULT_OPTS="--bind tab:toggle-out,shift-tab:toggle-in"`
|
2016-01-16 12:13:12 +00:00
|
|
|
|
- Reduced the initial delay when `--tac` is not given
|
|
|
|
|
- fzf defers the initial rendering of the screen up to 100ms if the input
|
|
|
|
|
stream is ongoing to prevent unnecessary redraw during the initial
|
|
|
|
|
phase. However, 100ms delay is quite noticeable and might give the
|
|
|
|
|
impression that fzf is not snappy enough. This commit reduces the
|
|
|
|
|
maximum delay down to 20ms when `--tac` is not specified, in which case
|
|
|
|
|
the input list quickly fills the entire screen.
|
2016-01-12 18:07:42 +00:00
|
|
|
|
|
2015-11-30 08:35:03 +00:00
|
|
|
|
0.11.1
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Added `--tabstop=SPACES` option
|
|
|
|
|
|
2015-11-09 16:54:53 +00:00
|
|
|
|
0.11.0
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Added OR operator for extended-search mode
|
|
|
|
|
- Added `--execute-multi` action
|
|
|
|
|
- Fixed incorrect cursor position when unicode wide characters are used in
|
|
|
|
|
`--prompt`
|
|
|
|
|
- Fixes and improvements in shell extensions
|
|
|
|
|
|
2015-11-03 13:49:32 +00:00
|
|
|
|
0.10.9
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Extended-search mode is now enabled by default
|
|
|
|
|
- `--extended-exact` is deprecated and instead we have `--exact` for
|
|
|
|
|
orthogonally controlling "exactness" of search
|
|
|
|
|
- Fixed not to display non-printable characters
|
|
|
|
|
- Added `double-click` for `--bind` option
|
2015-11-03 13:59:57 +00:00
|
|
|
|
- More robust handling of SIGWINCH
|
2015-11-03 13:49:32 +00:00
|
|
|
|
|
2015-10-09 03:41:29 +00:00
|
|
|
|
0.10.8
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Fixed panic when trying to set colors after colors are disabled (#370)
|
|
|
|
|
|
2015-10-05 14:28:24 +00:00
|
|
|
|
0.10.7
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Fixed unserialized interrupt handling during execute action which often
|
|
|
|
|
caused invalid memory access and crash
|
|
|
|
|
- Changed `--tiebreak=length` (default) to use trimmed length when `--nth` is
|
|
|
|
|
used
|
|
|
|
|
|
2015-09-15 10:04:53 +00:00
|
|
|
|
0.10.6
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Replaced `--header-file` with `--header` option
|
|
|
|
|
- `--header` and `--header-lines` can be used together
|
|
|
|
|
- Changed exit status
|
|
|
|
|
- 0: Okay
|
|
|
|
|
- 1: No match
|
2015-09-19 13:51:12 +00:00
|
|
|
|
- 2: Error
|
|
|
|
|
- 130: Interrupted
|
|
|
|
|
- 64-bit linux binary is statically-linked with ncurses to avoid
|
|
|
|
|
compatibility issues.
|
2015-09-15 10:04:53 +00:00
|
|
|
|
|
2015-09-12 03:50:32 +00:00
|
|
|
|
0.10.5
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- `'`-prefix to unquote the term in `--extended-exact` mode
|
|
|
|
|
- Backward scan when `--tiebreak=end` is set
|
|
|
|
|
|
2015-08-28 17:36:27 +00:00
|
|
|
|
0.10.4
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Fixed to remove ANSI code from output when `--with-nth` is set
|
|
|
|
|
|
2015-08-10 09:34:20 +00:00
|
|
|
|
0.10.3
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
- Fixed slow performance of `--with-nth` when used with `--delimiter`
|
|
|
|
|
- Regular expression engine of Golang as of now is very slow, so the fixed
|
|
|
|
|
version will treat the given delimiter pattern as a plain string instead
|
|
|
|
|
of a regular expression unless it contains special characters and is
|
|
|
|
|
a valid regular expression.
|
2015-08-10 14:47:03 +00:00
|
|
|
|
- Simpler regular expression for delimiter for better performance
|
2015-08-10 09:34:20 +00:00
|
|
|
|
|
2015-08-02 05:32:21 +00:00
|
|
|
|
0.10.2
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
### Fixes and improvements
|
|
|
|
|
|
|
|
|
|
- Improvement in perceived response time of queries
|
|
|
|
|
- Eager, efficient rune array conversion
|
|
|
|
|
- Graceful exit when failed to initialize ncurses (invalid $TERM)
|
|
|
|
|
- Improved ranking algorithm when `--nth` option is set
|
|
|
|
|
- Changed the default command not to fail when there are files whose names
|
|
|
|
|
start with dash
|
|
|
|
|
|
2015-07-22 05:19:55 +00:00
|
|
|
|
0.10.1
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
2015-07-26 14:02:04 +00:00
|
|
|
|
- Added `--margin` option
|
2015-07-22 05:19:55 +00:00
|
|
|
|
- Added options for sticky header
|
|
|
|
|
- `--header-file`
|
|
|
|
|
- `--header-lines`
|
2015-07-23 12:05:33 +00:00
|
|
|
|
- Added `cancel` action which clears the input or closes the finder when the
|
|
|
|
|
input is already empty
|
|
|
|
|
- e.g. `export FZF_DEFAULT_OPTS="--bind esc:cancel"`
|
2015-07-22 15:56:03 +00:00
|
|
|
|
- Added `delete-char/eof` action to differentiate `CTRL-D` and `DEL`
|
2015-07-22 05:19:55 +00:00
|
|
|
|
|
|
|
|
|
### Minor improvements/fixes
|
|
|
|
|
|
|
|
|
|
- Fixed to allow binding colon and comma keys
|
|
|
|
|
- Fixed ANSI processor to handle color regions spanning multiple lines
|
|
|
|
|
|
2015-06-21 08:40:36 +00:00
|
|
|
|
0.10.0
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
- More actions for `--bind`
|
|
|
|
|
- `select-all`
|
|
|
|
|
- `deselect-all`
|
|
|
|
|
- `toggle-all`
|
|
|
|
|
- `ignore`
|
|
|
|
|
- `execute(...)` action for running arbitrary command without leaving fzf
|
|
|
|
|
- `fzf --bind "ctrl-m:execute(less {})"`
|
|
|
|
|
- `fzf --bind "ctrl-t:execute(tmux new-window -d 'vim {}')"`
|
|
|
|
|
- If the command contains parentheses, use any of the follows alternative
|
|
|
|
|
notations to avoid parse errors
|
|
|
|
|
- `execute[...]`
|
|
|
|
|
- `execute~...~`
|
|
|
|
|
- `execute!...!`
|
|
|
|
|
- `execute@...@`
|
|
|
|
|
- `execute#...#`
|
|
|
|
|
- `execute$...$`
|
|
|
|
|
- `execute%...%`
|
|
|
|
|
- `execute^...^`
|
|
|
|
|
- `execute&...&`
|
|
|
|
|
- `execute*...*`
|
|
|
|
|
- `execute;...;`
|
|
|
|
|
- `execute/.../`
|
|
|
|
|
- `execute|...|`
|
|
|
|
|
- `execute:...`
|
|
|
|
|
- This is the special form that frees you from parse errors as it
|
|
|
|
|
does not expect the closing character
|
|
|
|
|
- The catch is that it should be the last one in the
|
|
|
|
|
comma-separated list
|
|
|
|
|
- Added support for optional search history
|
|
|
|
|
- `--history HISTORY_FILE`
|
|
|
|
|
- When used, `CTRL-N` and `CTRL-P` are automatically remapped to
|
|
|
|
|
`next-history` and `previous-history`
|
|
|
|
|
- `--history-size MAX_ENTRIES` (default: 1000)
|
|
|
|
|
- Cyclic scrolling can be enabled with `--cycle`
|
|
|
|
|
- Fixed the bug where the spinner was not spinning on idle input stream
|
|
|
|
|
- e.g. `sleep 100 | fzf`
|
|
|
|
|
|
|
|
|
|
### Minor improvements/fixes
|
|
|
|
|
|
|
|
|
|
- Added synonyms for key names that can be specified for `--bind`,
|
|
|
|
|
`--toggle-sort`, and `--expect`
|
|
|
|
|
- Fixed the color of multi-select marker on the current line
|
|
|
|
|
- Fixed to allow `^pattern$` in extended-search mode
|
|
|
|
|
|
|
|
|
|
|
2015-06-02 17:09:07 +00:00
|
|
|
|
0.9.13
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
- Color customization with the extended `--color` option
|
|
|
|
|
|
|
|
|
|
### Bug fixes
|
|
|
|
|
|
|
|
|
|
- Fixed premature termination of Reader in the presence of a long line which
|
|
|
|
|
is longer than 64KB
|
|
|
|
|
|
2015-05-20 15:38:40 +00:00
|
|
|
|
0.9.12
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
- Added `--bind` option for custom key bindings
|
|
|
|
|
|
|
|
|
|
### Bug fixes
|
|
|
|
|
|
|
|
|
|
- Fixed to update "inline-info" immediately after terminal resize
|
2015-05-21 17:37:38 +00:00
|
|
|
|
- Fixed ANSI code offset calculation
|
2015-05-20 15:38:40 +00:00
|
|
|
|
|
2015-04-21 16:42:38 +00:00
|
|
|
|
0.9.11
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
- Added `--inline-info` option for saving screen estate (#202)
|
|
|
|
|
- Useful inside Neovim
|
|
|
|
|
- e.g. `let $FZF_DEFAULT_OPTS = $FZF_DEFAULT_OPTS.' --inline-info'`
|
|
|
|
|
|
|
|
|
|
### Bug fixes
|
|
|
|
|
|
|
|
|
|
- Invalid mutation of input on case conversion (#209)
|
|
|
|
|
- Smart-case for each term in extended-search mode (#208)
|
|
|
|
|
- Fixed double-click result when scroll offset is positive
|
|
|
|
|
|
2015-04-17 13:23:52 +00:00
|
|
|
|
0.9.10
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
### Improvements
|
|
|
|
|
|
|
|
|
|
- Performance optimization
|
|
|
|
|
- Less aggressive memoization to limit memory usage
|
|
|
|
|
|
2015-04-17 17:52:30 +00:00
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
- Added color scheme for light background: `--color=light`
|
|
|
|
|
|
2015-04-16 05:20:29 +00:00
|
|
|
|
0.9.9
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
- Added `--tiebreak` option (#191)
|
|
|
|
|
- Added `--no-hscroll` option (#193)
|
2015-04-16 05:44:41 +00:00
|
|
|
|
- Visual indication of `--toggle-sort` (#194)
|
2015-04-16 05:20:29 +00:00
|
|
|
|
|
2015-04-14 12:45:37 +00:00
|
|
|
|
0.9.8
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
|
|
### Bug fixes
|
|
|
|
|
|
|
|
|
|
- Fixed Unicode case handling (#186)
|
2015-04-14 14:19:33 +00:00
|
|
|
|
- Fixed to terminate on RuneError (#185)
|
2015-04-14 12:45:37 +00:00
|
|
|
|
|
2015-03-31 13:05:02 +00:00
|
|
|
|
0.9.7
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
- Added `--toggle-sort` option (#173)
|
|
|
|
|
- `--toggle-sort=ctrl-r` is applied to `CTRL-R` shell extension
|
|
|
|
|
|
|
|
|
|
### Bug fixes
|
|
|
|
|
|
|
|
|
|
- Fixed to print empty line if `--expect` is set and fzf is completed by
|
|
|
|
|
`--select-1` or `--exit-0` (#172)
|
|
|
|
|
- Fixed to allow comma character as an argument to `--expect` option
|
|
|
|
|
|
2015-03-28 17:59:32 +00:00
|
|
|
|
0.9.6
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
#### Added `--expect` option (#163)
|
|
|
|
|
|
|
|
|
|
If you provide a comma-separated list of keys with `--expect` option, fzf will
|
|
|
|
|
allow you to select the match and complete the finder when any of the keys is
|
|
|
|
|
pressed. Additionally, fzf will print the name of the key pressed as the first
|
|
|
|
|
line of the output so that your script can decide what to do next based on the
|
|
|
|
|
information.
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
fzf --expect=ctrl-v,ctrl-t,alt-s,f1,f2,~,@
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The updated vim plugin uses this option to implement
|
|
|
|
|
[ctrlp](https://github.com/kien/ctrlp.vim)-compatible key bindings.
|
|
|
|
|
|
|
|
|
|
### Bug fixes
|
|
|
|
|
|
|
|
|
|
- Fixed to ignore ANSI escape code `\e[K` (#162)
|
|
|
|
|
|
2015-03-22 07:21:52 +00:00
|
|
|
|
0.9.5
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
|
|
#### Added `--ansi` option (#150)
|
|
|
|
|
|
|
|
|
|
If you give `--ansi` option to fzf, fzf will interpret ANSI color codes from
|
|
|
|
|
the input, display the item with the ANSI colors (true colors are not
|
|
|
|
|
supported), and strips the codes from the output. This option is off by
|
|
|
|
|
default as it entails some overhead.
|
|
|
|
|
|
|
|
|
|
### Improvements
|
|
|
|
|
|
|
|
|
|
#### Reduced initial memory footprint (#151)
|
|
|
|
|
|
|
|
|
|
By removing unnecessary copy of pointers, fzf will use significantly smaller
|
|
|
|
|
amount of memory when it's started. The difference is hugely noticeable when
|
|
|
|
|
the input is extremely large. (e.g. `locate / | fzf`)
|
|
|
|
|
|
|
|
|
|
### Bug fixes
|
|
|
|
|
|
|
|
|
|
- Fixed panic on `--no-sort --filter ''` (#149)
|
|
|
|
|
|
2015-02-25 16:42:15 +00:00
|
|
|
|
0.9.4
|
|
|
|
|
-----
|
|
|
|
|
|
2015-03-01 03:31:49 +00:00
|
|
|
|
### New features
|
2015-02-25 16:42:15 +00:00
|
|
|
|
|
2015-03-01 03:31:49 +00:00
|
|
|
|
#### Added `--tac` option to reverse the order of the input.
|
2015-02-25 16:42:15 +00:00
|
|
|
|
|
2015-03-01 03:31:49 +00:00
|
|
|
|
One might argue that this option is unnecessary since we can already put `tac`
|
|
|
|
|
or `tail -r` in the command pipeline to achieve the same result. However, the
|
|
|
|
|
advantage of `--tac` is that it does not block until the input is complete.
|
|
|
|
|
|
|
|
|
|
### *Backward incompatible changes*
|
|
|
|
|
|
|
|
|
|
#### Changed behavior on `--no-sort`
|
|
|
|
|
|
|
|
|
|
`--no-sort` option will no longer reverse the display order within finder. You
|
|
|
|
|
may want to use the new `--tac` option with `--no-sort`.
|
2015-02-25 16:42:15 +00:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
history | fzf +s --tac
|
|
|
|
|
```
|
|
|
|
|
|
2015-03-01 03:31:49 +00:00
|
|
|
|
### Improvements
|
|
|
|
|
|
|
|
|
|
#### `--filter` will not block when sort is disabled
|
|
|
|
|
|
|
|
|
|
When fzf works in filtering mode (`--filter`) and sort is disabled
|
|
|
|
|
(`--no-sort`), there's no need to block until input is complete. The new
|
|
|
|
|
version of fzf will print the matches on-the-fly when the following condition
|
|
|
|
|
is met:
|
|
|
|
|
|
|
|
|
|
--filter TERM --no-sort [--no-tac --no-sync]
|
|
|
|
|
|
|
|
|
|
or simply:
|
|
|
|
|
|
|
|
|
|
-f TERM +s
|
|
|
|
|
|
|
|
|
|
This change removes unnecessary delay in the use cases like the following:
|
|
|
|
|
|
|
|
|
|
fzf -f xxx +s | head -5
|
|
|
|
|
|
|
|
|
|
However, in this case, fzf processes the lines sequentially, so it cannot
|
|
|
|
|
utilize multiple cores, and fzf will run slightly slower than the previous
|
|
|
|
|
mode of execution where filtering is done in parallel after the entire input
|
|
|
|
|
is loaded. If the user is concerned about this performance problem, one can
|
|
|
|
|
add `--sync` option to re-enable buffering.
|
|
|
|
|
|
2015-02-25 16:42:15 +00:00
|
|
|
|
0.9.3
|
|
|
|
|
-----
|
|
|
|
|
|
2015-03-01 03:31:49 +00:00
|
|
|
|
### New features
|
2015-02-25 16:42:15 +00:00
|
|
|
|
- Added `--sync` option for multi-staged filtering
|
|
|
|
|
|
2015-03-01 03:31:49 +00:00
|
|
|
|
### Improvements
|
2015-02-25 16:42:15 +00:00
|
|
|
|
- `--select-1` and `--exit-0` will start finder immediately when the condition
|
|
|
|
|
cannot be met
|