mirror of
https://github.com/junegunn/fzf.git
synced 2025-07-29 03:01:59 -07:00
fix spelling
This commit is contained in:
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@@ -17,6 +17,6 @@
|
|||||||
- [ ] bash
|
- [ ] bash
|
||||||
- [ ] zsh
|
- [ ] zsh
|
||||||
- [ ] fish
|
- [ ] fish
|
||||||
|
|
||||||
## Problem / Steps to reproduce
|
## Problem / Steps to reproduce
|
||||||
|
|
||||||
|
@@ -149,7 +149,7 @@ fzf-tmux -p 80%,60%
|
|||||||
|
|
||||||
> You might also want to check out my tmux plugins which support this popup
|
> You might also want to check out my tmux plugins which support this popup
|
||||||
> window layout.
|
> window layout.
|
||||||
>
|
>
|
||||||
> - https://github.com/junegunn/tmux-fzf-url
|
> - https://github.com/junegunn/tmux-fzf-url
|
||||||
> - https://github.com/junegunn/tmux-fzf-maccy
|
> - https://github.com/junegunn/tmux-fzf-maccy
|
||||||
|
|
||||||
@@ -190,7 +190,7 @@ list without restarting fzf.
|
|||||||
|
|
||||||
### Toggling between data sources
|
### Toggling between data sources
|
||||||
|
|
||||||
You're not limiited to just one reload binding. Set up multiple bindings so
|
You're not limited to just one reload binding. Set up multiple bindings so
|
||||||
you can switch between data sources.
|
you can switch between data sources.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
@@ -349,7 +349,7 @@ IFS=: read -ra selected < <(
|
|||||||
fzf can kill the initial Ripgrep process it starts with the initial query.
|
fzf can kill the initial Ripgrep process it starts with the initial query.
|
||||||
Otherwise, the initial Ripgrep process will keep consuming system resources
|
Otherwise, the initial Ripgrep process will keep consuming system resources
|
||||||
even after `reload` is triggered.
|
even after `reload` is triggered.
|
||||||
- Filtering is no longer a responsibitiliy of fzf; hence `--disabled`
|
- Filtering is no longer a responsibility of fzf; hence `--disabled`
|
||||||
- `{q}` in the reload command evaluates to the query string on fzf prompt.
|
- `{q}` in the reload command evaluates to the query string on fzf prompt.
|
||||||
- `sleep 0.1` in the reload command is for "debouncing". This small delay will
|
- `sleep 0.1` in the reload command is for "debouncing". This small delay will
|
||||||
reduce the number of intermediate Ripgrep processes while we're typing in
|
reduce the number of intermediate Ripgrep processes while we're typing in
|
||||||
|
@@ -37,7 +37,7 @@ CHANGELOG
|
|||||||
" fzf will read the stream file while allowing other processes to append to it
|
" 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'})
|
call fzf#run({'source': 'cat /dev/null > /tmp/stream; tail -f /tmp/stream'})
|
||||||
```
|
```
|
||||||
- It is now possible to open popup window relative to the currrent window
|
- It is now possible to open popup window relative to the current window
|
||||||
```vim
|
```vim
|
||||||
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6, 'relative': v:true, 'yoffset': 1.0 } }
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6, 'relative': v:true, 'yoffset': 1.0 } }
|
||||||
```
|
```
|
||||||
@@ -87,7 +87,7 @@ CHANGELOG
|
|||||||
```
|
```
|
||||||
- Added `select` and `deselect` action for unconditionally selecting or
|
- Added `select` and `deselect` action for unconditionally selecting or
|
||||||
deselecting a single item in `--multi` mode. Complements `toggle` action.
|
deselecting a single item in `--multi` mode. Complements `toggle` action.
|
||||||
- Sigificant performance improvement in ANSI code processing
|
- Significant performance improvement in ANSI code processing
|
||||||
- Bug fixes and improvements
|
- Bug fixes and improvements
|
||||||
- Built with Go 1.16
|
- Built with Go 1.16
|
||||||
|
|
||||||
@@ -1169,4 +1169,3 @@ add `--sync` option to re-enable buffering.
|
|||||||
### Improvements
|
### Improvements
|
||||||
- `--select-1` and `--exit-0` will start finder immediately when the condition
|
- `--select-1` and `--exit-0` will start finder immediately when the condition
|
||||||
cannot be met
|
cannot be met
|
||||||
|
|
||||||
|
@@ -574,7 +574,7 @@ FZF_DEFAULT_COMMAND='find . -type f' \
|
|||||||
The following example uses fzf as the selector interface for ripgrep. We bound
|
The following example uses fzf as the selector interface for ripgrep. We bound
|
||||||
`reload` action to `change` event, so every time you type on fzf, the ripgrep
|
`reload` action to `change` event, so every time you type on fzf, the ripgrep
|
||||||
process will restart with the updated query string denoted by the placeholder
|
process will restart with the updated query string denoted by the placeholder
|
||||||
expression `{q}`. Also, note that we used `--disabled` option so that fzf
|
expression `{q}`. Also, note that we used `--disabled` option so that fzf
|
||||||
doesn't perform any secondary filtering.
|
doesn't perform any secondary filtering.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
Reference in New Issue
Block a user