2015-02-25 16:42:15 +00:00
|
|
|
CHANGELOG
|
|
|
|
=========
|
|
|
|
|
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
|
|
|
|
|