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 .
- Jun 27, 2015
-
-
Junegunn Choi authored
-
- 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
-
Junegunn Choi authored
ALT-C can fail with the following aliases as pointed out in #272 alias find='noglob find' alias command='command '
-
- Jun 22, 2015
-
-
Junegunn Choi authored
-
- Jun 21, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
`--null` is ambiguous. For completeness' sake, we need both `--read0` and `--print0`. `--read0` only makes sense when the input contains multiline entries. However, fzf currently cannot correctly display multiline entries, I'm going to make `--read0` an undocumented feature.
-
Junegunn Choi authored
Use vi-fetch-history on zsh to get history line
-
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.
- Jun 19, 2015
-
-
Junegunn Choi authored
Since the same can be now achieved with --bind KEY:toggle-sort
-
Junegunn Choi authored
Considering HISTSIZE and HISTFILESIZE of bash
-
- Jun 18, 2015
-
-
Junegunn Choi authored
Remember the exact string given as the key name so that it's possible to correctly handle synonyms and print the original string.
-
Junegunn Choi authored
-
Junegunn Choi authored
by making sure that we're back on shell command-line
-
- Jun 17, 2015
-
-
Junegunn Choi authored
-
- Jun 16, 2015
-
-
Junegunn Choi authored
Close #266
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Jun 15, 2015
-
-
Junegunn Choi authored
e.g. fzf --bind "ctrl-m:execute:COMMAND..." --bind ctrl-j:accept
-
Junegunn Choi authored
-
Junegunn Choi authored
This can be used to avoid parse errors that can happen when the command contains the closing character. Since the command does not finish at a certain character, the key binding should be the last one in the group. Suggested by @tiziano88. (#265) e.g. fzf --bind "ctrl-m:execute=COMMAND..." --bind ctrl-j:accept
-
Junegunn Choi authored
-
Junegunn Choi authored
enter (return), space, tab, btab, esc, up, down, left, right
-
- Jun 14, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
execute(...) execute[...] execute~...~ execute!...! execute@...@ execute#...# execute$...$ execute%...% execute^...^ execute&...& execute*...* execute:...: execute;...; execute/.../ execute|...|
-
Junegunn Choi authored
e.g. fzf --bind "ctrl-m:execute(less {})" fzf --bind "ctrl-t:execute[tmux new-window -d 'vim {}']"
-
Junegunn Choi authored
This change does have positive effect on startup time of fzf when many number of options are provided. time fzf --query=____ --filter=____ --delimiter=q --prompt=________ \ --nth=1,2,3,4 --with-nth=1,2,3,4 --toggle-sort=ctrl-r \ --expect=ctrl-x --tiebreak=index --color=light --bind=ctrl-t:accept \ --history=/tmp/xxx --history-max=1000 --help 0m0.013s -> 0m0.008s
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Jun 13, 2015
-
-
Junegunn Choi authored
:(
-
Junegunn Choi authored
- Add `--history` option (e.g. fzf --history ~/.fzf.history) - Add `--history-max` option for limiting the size of the file (default 1000) - Add `previous-history` and `next-history` actions for `--bind` - CTRL-P and CTRL-N are automatically remapped to these actions when `--history` is used Closes #249, #251
-
Junegunn Choi authored
Do not rename terminal buffer
-
Kassio Borges authored
To avoid conflict with other neoterm plugins that manage terminals, prefer named terminals.
-
- Jun 09, 2015
-
-
Junegunn Choi authored
Close #257
-
- Jun 08, 2015
-
-
Junegunn Choi authored
-