mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-09 23:30:56 +00:00
Update docs
This commit is contained in:
parent
1616ed543d
commit
7dc9e14874
11
CHANGELOG.md
11
CHANGELOG.md
@ -4,6 +4,7 @@ CHANGELOG
|
|||||||
0.53.0
|
0.53.0
|
||||||
------
|
------
|
||||||
- Multi-line display
|
- Multi-line display
|
||||||
|
- See [Processing multi-line items](https://junegunn.github.io/fzf/tips/processing-multi-line-items/)
|
||||||
- fzf can now display multi-line items
|
- fzf can now display multi-line items
|
||||||
```sh
|
```sh
|
||||||
# All bash functions, highlighted
|
# All bash functions, highlighted
|
||||||
@ -42,14 +43,16 @@ CHANGELOG
|
|||||||
```vim
|
```vim
|
||||||
let g:fzf_layout = { 'tmux': '100%,70%' }
|
let g:fzf_layout = { 'tmux': '100%,70%' }
|
||||||
```
|
```
|
||||||
- Better Windows Support
|
- Added support for endless input streams
|
||||||
- fzf now works on Git bash (mintty) out of the box via winpty integration
|
- See [Browsing log stream with fzf](https://junegunn.github.io/fzf/tips/browsing-log-streams/)
|
||||||
- Many fixes and improvements for Windows
|
- Added `--tail=NUM` option to limit the number of items to keep in memory. This is useful when you want to browse an endless stream of data (e.g. log stream) with fzf while limiting memory usage.
|
||||||
- Added `--tail=NUM` option to limit the number of items to keep in memory. This is useful when you want to browse an endless stream of data (e.g. log stream) with fzf while limiting memory usage.
|
|
||||||
```sh
|
```sh
|
||||||
# Interactive filtering of a log stream
|
# Interactive filtering of a log stream
|
||||||
tail -f *.log | fzf --tail 100000 --tac --no-sort --exact
|
tail -f *.log | fzf --tail 100000 --tac --no-sort --exact
|
||||||
```
|
```
|
||||||
|
- Better Windows Support
|
||||||
|
- fzf now works on Git bash (mintty) out of the box via winpty integration
|
||||||
|
- Many fixes and improvements for Windows
|
||||||
- man page is now embedded in the binary; `fzf --man` to see it
|
- man page is now embedded in the binary; `fzf --man` to see it
|
||||||
- Changed the default `--scroll-off` to 3, as we think it's a better default
|
- Changed the default `--scroll-off` to 3, as we think it's a better default
|
||||||
- Process started by `execute` action now directly writes to and reads from `/dev/tty`. Manual `/dev/tty` redirection for interactive programs is no longer required.
|
- Process started by `execute` action now directly writes to and reads from `/dev/tty`. Manual `/dev/tty` redirection for interactive programs is no longer required.
|
||||||
|
@ -106,7 +106,8 @@ See \fBFIELD INDEX EXPRESSION\fR for the details.
|
|||||||
Transform the presentation of each line using field index expressions
|
Transform the presentation of each line using field index expressions
|
||||||
.TP
|
.TP
|
||||||
.BI "-d, --delimiter=" "STR"
|
.BI "-d, --delimiter=" "STR"
|
||||||
Field delimiter regex for \fB--nth\fR and \fB--with-nth\fR (default: AWK-style)
|
Field delimiter regex for \fB--nth\fR, \fB--with-nth\fR, and field index
|
||||||
|
expressions (default: AWK-style)
|
||||||
.TP
|
.TP
|
||||||
.BI "--disabled"
|
.BI "--disabled"
|
||||||
Do not perform search. With this option, fzf becomes a simple selector
|
Do not perform search. With this option, fzf becomes a simple selector
|
||||||
|
Loading…
Reference in New Issue
Block a user