This project is mirrored from https://github.com/junegunn/fzf.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Nov 08, 2016
-
-
Junegunn Choi authored
- Fix display of CJK wide characters - Fix horizontal offset of header lines - Add support for keys with ALT modifier, shift-tab, page-up and down - Fix util.ExecCommand to properly parse command-line arguments - Fix redraw on resize - Implement Pause/Resume for execute action - Remove runtime check of GOOS - Change exit status to 2 when tcell failed to start - TBD: Travis CI build for tcell renderer - Pending. tcell cannot reliably ingest keys from tmux send-keys
-
- Nov 07, 2016
-
-
Junegunn Choi authored
`TAGS=termbox make` (or `go build -tags termbox`)
-
- Oct 28, 2016
-
-
Junegunn Choi authored
Close #722
-
- Oct 21, 2016
-
-
Junegunn Choi authored
Close #712
-
- Oct 04, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
It was possible that a few lines at the bottom may not be visible if there are lines above that span multiple lines.
-
- Oct 03, 2016
-
-
Junegunn Choi authored
Also close #679. The placeholder for the current query is {q}.
-
- Sep 29, 2016
-
-
Junegunn Choi authored
Close #677
-
- Sep 28, 2016
-
-
Junegunn Choi authored
Dim, underline, blink, reverse
-
- Sep 25, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #669 You can use your mouse or binadble preview-up and preview-down actions to scroll the content of the preview window. fzf --preview 'highlight -O ansi {}' --bind alt-j:preview-down,alt-k:preview-up
-
- Sep 21, 2016
-
-
Junegunn Choi authored
Related #666
-
- Sep 19, 2016
-
-
Junegunn Choi authored
Related: #660
-
- Sep 18, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Use hard-coded limit to keep it simple. An alternative is to dynamically calculate the width of the visible area and use it as the limit, but it can cause unwanted truncation of the query on screen resize/split.
-
Junegunn Choi authored
-
- Aug 20, 2016
-
-
Junegunn Choi authored
-
- Aug 19, 2016
-
-
Junegunn Choi authored
- Make structs smaller - Introduce Result struct and use it to represent matched items instead of reusing Item struct for that purpose - Avoid unnecessary memory allocation - Avoid growing slice from the initial capacity - Code cleanup
-
- Aug 14, 2016
-
-
Junegunn Choi authored
-
- Aug 13, 2016
-
-
Junegunn Choi authored
In the best case (all ascii), this reduces the memory footprint by 60% and the response time by 15% to 20%. In the worst case (every line has non-ascii characters), 3 to 4% overhead is observed.
-
- Jun 15, 2016
-
-
Junegunn Choi authored
-
- Jun 14, 2016
-
-
Junegunn Choi authored
Close #598
-
- Jun 11, 2016
-
-
Junegunn Choi authored
Close #587
-
- Jun 07, 2016
-
-
Junegunn Choi authored
Close #590
-
- May 18, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
jump and jump-accept implement EasyMotion-like movement in fzf. Suggested by @mhrebenyuk. Close #569.
-
- May 12, 2016
-
-
Junegunn Choi authored
Close #571
-
- Apr 14, 2016
-
-
Junegunn Choi authored
-
- Mar 02, 2016
-
-
Junegunn Choi authored
Close #513
-
- Feb 18, 2016
-
-
Junegunn Choi authored
- Slightly more efficient processing of Options - Do not return reference type arguments that are mutated inside the function - Use util.Constrain function when appropriate
-
- Feb 07, 2016
-
-
Junegunn Choi authored
-
- Feb 03, 2016
-
-
Junegunn Choi authored
Note that $SHELL only points to the default shell instead of the current shell. If you're on a non-default shell, you might want to override the value like follows. SHELL=zsh fzf --bind 'enter:execute:echo $ZSH_VERSION; sleep 1'
-
- Feb 02, 2016
-
-
Junegunn Choi authored
-
- Jan 16, 2016
-
-
Junegunn Choi authored
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.
-
- Jan 14, 2016
-
-
Junegunn Choi authored
Related: #452 When `--multi` is set, tab key will bring your cursor down, and shift-tab up. But since fzf by default draws the screen in bottom-up fashion, one may feel that the opposite of the behavior is more desirable and choose to customize the key bindings as follows. export FZF_DEFAULT_OPTS="--bind tab:toggle-up,shift-tab:toggle-down" This configuration, however, becomes no longer straightforward when `--reverse` is set and fzf switches to top-down layout. To address the requirement, this commit adds `toggle-in` and `toggle-out` option which switch direction depending on `--reverse`-ness. export FZF_DEFAULT_OPTS="--bind tab:toggle-out,shift-tab:toggle-in"
-
Junegunn Choi authored
This commit compensates for the performance overhead from the extended tiebreak option.
-
- Jan 13, 2016
-
-
Junegunn Choi authored
-
- Nov 30, 2015
-
-
Junegunn Choi authored
Related: https://github.com/junegunn/fzf.vim/issues/49
-
- Nov 09, 2015
-
-
Junegunn Choi authored
Close #413
-
Junegunn Choi authored
-