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 .
- Aug 18, 2016
-
-
Junegunn Choi authored
By only using leaf functions
-
Junegunn Choi authored
Sort performance increases as the size of each sublist decreases (n in nlog(n) decreases). Merger is then responsible for merging the sorted lists in order, and since in most cases we are only interesed in the matches in the first page on the screen so the overhead in the process is negligible.
-
- Aug 17, 2016
-
- Aug 16, 2016
-
-
Junegunn Choi authored
-
- Aug 14, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Approx. 50% less memory footprint and 40% improvement in query time
- 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.
-
Junegunn Choi authored
-
- Aug 12, 2016
-
-
Junegunn Choi authored
Fix #636. Patch suggested by @edi9999.
-
- Aug 02, 2016
-
-
Junegunn Choi authored
Fix #183
-
Junegunn Choi authored
Close junegunn/fzf.vim#173 and #630
-
- Jul 30, 2016
-
-
Junegunn Choi authored
Remove `name` option from `termopen`.
-
- Jul 29, 2016
-
-
Kassio Borges authored
`termopen` no longer accepts a `name` option, instead we should suffix the command with `;#NAME`.
-
- Jul 28, 2016
-
-
Junegunn Choi authored
Patch suggested by Mariusz Atamańczuk
-
- Jul 26, 2016
-
-
Junegunn Choi authored
Close #627
-
- Jul 21, 2016
-
-
Junegunn Choi authored
To make it consistent with the other commands in fzf.vim
-
- Jul 16, 2016
-
- Jul 15, 2016
-
-
Junegunn Choi authored
Close #617
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #607
-
- Jul 14, 2016
-
-
Junegunn Choi authored
Close #622
-
- Jul 13, 2016
-
-
Junegunn Choi authored
Close #620
-
- Jul 11, 2016
-
-
Junegunn Choi authored
Close #615
-
- Jul 10, 2016
-
-
Junegunn Choi authored
No guarantee in the order in which files are listed
-
Junegunn Choi authored
Related: #616
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
For consistency and (negligible) performance improvement
-
Junegunn Choi authored
-
Junegunn Choi authored
Use tmux buffers for sending output to preserve character encoding
-
Junegunn Choi authored
Related #616
-
- Jul 09, 2016
-
-
Sean authored
-
- Jul 07, 2016
-
-
Junegunn Choi authored
Close #611
-
- Jul 06, 2016
-
-
Junegunn Choi authored
Close #612
-
- Jul 05, 2016
-
-
Junegunn Choi authored
[zsh] Re-initialize zle when widgets finish
-
Sebastian Reuße authored
zle automatically calls zle-line-init when it starts to read a new line. Many Zsh setups use this hook to set the terminal into application mode, since this will then allow defining keybinds based on the $terminfo variable (the escape codes in said variable are only valid in application mode). However, fzf resets the terminal into raw mode, rendering $terminfo values invalid once the widget has finished. Accordingly, keyboard bindings defined via $terminfo won’t work anymore. This fixes the issue by calling zle-line-init when widgets finish. Care is taken to not call this widget when it is undefined. Fixes #279
-