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 .
- Oct 05, 2018
-
-
Paul Frybarger authored
Close #867 Close #1256
-
- Nov 14, 2017
-
-
Aaron Jensen authored
Fixes #915
-
- Oct 20, 2017
-
-
Daniel Schaffrath authored
Reference: http://zsh.sourceforge.net/Doc/Release/Shell-Builtin-Commands.html > The flag -r reverses the order of the events
-
- Oct 10, 2017
-
-
Ionel Cristian Mărieș authored
* Don't do shell quoting for weird chars This would prevent tabs from being escaped as `$'\t'` (definitely not what I would want to see as initial value in the search). * Do different escape.
-
- Mar 03, 2017
-
-
Junegunn Choi authored
This reverts commit 3a6af275.
-
Junegunn Choi authored
CTRL-R binding used to start with --no-sort to list the matched commands in chronological order. However, it has been a constant source of confusion. Let's enable it by default from now on. The sorted result shouldn't be too confusing as we use --tiebreak=index.
- Mar 01, 2017
-
-
Junegunn Choi authored
Close #858
-
- Feb 19, 2017
-
-
Junegunn Choi authored
-
- Feb 16, 2017
-
-
Pierre Neidhardt authored
-
- Feb 09, 2017
-
-
Daniel Gray authored
-
- Jan 26, 2017
-
-
Junegunn Choi authored
Related #822
-
- Jan 21, 2017
-
-
Junegunn Choi authored
https://github.com/mattn/go-shellwords/issues/3 Close #812
-
- Jan 17, 2017
-
-
Junegunn Choi authored
Close #807
-
Junegunn Choi authored
Related #807
-
- Jan 15, 2017
-
-
Junegunn Choi authored
-
- Jan 08, 2017
-
-
Junegunn Choi authored
-
- Dec 24, 2016
-
-
Pierre Neidhardt authored
This removes the need for the 'sed' call. Faster, cleaner.
-
- Nov 15, 2016
-
-
Junegunn Choi authored
`-fstype dev` is invalid. It's devfs on macOS and devtmpfs on Linux.
-
- Jul 11, 2016
-
-
Junegunn Choi authored
Close #615
-
- Jul 05, 2016
-
-
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
-
- Jun 17, 2016
-
-
Daniel Hahler authored
This allows to have a custom widget like the following, which would additionally accept the line, but only in case of entries being selected: fzf-file-widget-with-accept() { zle fzf-file-widget if [[ "$?" == 0 ]] && (( $#BUFFER )); then zle accept-line fi } zle -N fzf-file-widget-with-accept bindkey '\e^T' fzf-file-widget-with-accept With this `<C-a>t` will launch fzf, and simulate the pressing of "Enter" afterwards.
-
- Jun 12, 2016
-
-
Junegunn Choi authored
Close #596
-
- Jun 08, 2016
-
-
Junegunn Choi authored
-
- May 25, 2016
-
-
Junegunn Choi authored
-
- Apr 25, 2016
-
-
Junegunn Choi authored
-
- Mar 23, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #526
-
- Nov 09, 2015
-
-
Junegunn Choi authored
-
- Nov 07, 2015
-
-
Junegunn Choi authored
-
- Nov 06, 2015
-
-
Jack Danger Canty authored
In the case that fzf-tmux returns a user-selected result but with a non-zero exit status (which can happen if a function inside $PS1 returns non-zero) this allows CTRL-R to continue working as expected. Addresses #203 (Tranquility's comment)
-
- Nov 04, 2015
-
-
Junegunn Choi authored
-
- Oct 02, 2015
-
-
Austin Ziegler authored
Fixes #363.
-
- Jun 26, 2015
-
-
Junegunn Choi authored
Close #40
-
- Jun 25, 2015
-
-
Junegunn Choi authored
Since we now use fzf-tmux instead of tmux split-window
-
- Jun 21, 2015
-
-
Oliver Kiddle authored
In addition to being simpler, it allows subsequent up/down history or accept-line-and-down-history widgets to work. Also allow for find being and alias if alias expansion after command is enabled.
-
- May 10, 2015
-
-
Robin Roth authored
at least my version of head wants -n1 to only display the first line
-
- Apr 23, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #214
-
- Apr 21, 2015
-
-
Junegunn Choi authored
-