summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-06-210.10.0Junegunn Choi
2015-06-21Rename --null to --read0 and undocument the optionJunegunn Choi
`--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.
2015-06-21Merge pull request #272 from okapia/zsh-simplifyJunegunn Choi
Use vi-fetch-history on zsh to get history line
2015-06-21use vi-fetch-history on zsh to get history lineOliver Kiddle
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.
2015-06-19Hide --toggle-sort from --help outputJunegunn Choi
Since the same can be now achieved with --bind KEY:toggle-sort
2015-06-19Rename --history-max to --history-sizeJunegunn Choi
Considering HISTSIZE and HISTFILESIZE of bash
2015-06-19Improve handling of key namesJunegunn Choi
Remember the exact string given as the key name so that it's possible to correctly handle synonyms and print the original string.
2015-06-18More key names for --bindJunegunn Choi
2015-06-18Avoid intermittent test failuresJunegunn Choi
by making sure that we're back on shell command-line
2015-06-18Keep the spinner spinning even when the source stream is idleJunegunn Choi
2015-06-16Add --cycle option for cyclic scrollingJunegunn Choi
Close #266
2015-06-16Add key name "bspace" for --bind (bspace != ctrl-h)Junegunn Choi
2015-06-16Allow binding CTRL-G and CTRL-QJunegunn Choi
2015-06-15Change alternative notation for execute action (#265)Junegunn Choi
e.g. fzf --bind "ctrl-m:execute:COMMAND..." --bind ctrl-j:accept
2015-06-15Fix `.` to match newlines as well (#265)Junegunn Choi
2015-06-15Add alternative execute notation that does not require closing charJunegunn Choi
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
2015-06-15Fix test code for docker buildJunegunn Choi
2015-06-15Add synonyms for some keys to be used with --bind and --toggle-sortJunegunn Choi
enter (return), space, tab, btab, esc, up, down, left, right
2015-06-14Fix Travis CI buildJunegunn Choi
2015-06-14More alternative notations for execute actionJunegunn Choi
execute(...) execute[...] execute~...~ execute!...! execute@...@ execute#...# execute$...$ execute%...% execute^...^ execute&...& execute*...* execute:...: execute;...; execute/.../ execute|...|
2015-06-14Add bind action for executing arbitrary command (#265)Junegunn Choi
e.g. fzf --bind "ctrl-m:execute(less {})" fzf --bind "ctrl-t:execute[tmux new-window -d 'vim {}']"
2015-06-14Remove unnecessary regexp matchesJunegunn Choi
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
2015-06-14GoLint fixJunegunn Choi
2015-06-14Fix Travis CI buildJunegunn Choi
2015-06-14Test refactoringJunegunn Choi
2015-06-14Fix Travis CI buildJunegunn Choi
2015-06-14Fix ignore actionJunegunn Choi
2015-06-14Add `ignore` action for --bindJunegunn Choi
2015-06-14Add missing files from the previous commitJunegunn Choi
:(
2015-06-14Add support for search historyJunegunn Choi
- 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
2015-06-14Merge pull request #264 from kassio/masterJunegunn Choi
Do not rename terminal buffer
2015-06-13Avoid conflict with other neoterm plugins.Kassio Borges
To avoid conflict with other neoterm plugins that manage terminals, prefer named terminals.
2015-06-09Add actions for --bind: select-all / deselect-all / toggle-allJunegunn Choi
Close #257
2015-06-08Adjust --help outputJunegunn Choi
2015-06-08Merge branch 'dullgiulio-121-accept-nil-input'Junegunn Choi
2015-06-08Add test case for --null optionJunegunn Choi
2015-06-08Merge branch '121-accept-nil-input' of https://github.com/dullgiulio/fzf ↵Junegunn Choi
into dullgiulio-121-accept-nil-input
2015-06-08Allow ^EqualMatch$Junegunn Choi
2015-06-08add support to nil-byte separated input strings, closes #121Giulio Iotti
2015-06-07Always use the same color for multi-select markersJunegunn Choi
2015-06-07Merge pull request #252 from dominikh/portable-swapOutputJunegunn Choi
Use ncurses's newterm instead of swapping stdout and stderr
2015-06-07Use ncurses's newterm instead of swapping stdout and stderrDominik Honnef
2015-06-030.9.130.9.13Junegunn Choi
2015-06-03Fix #248 - Premature termination of Reader on long inputJunegunn Choi
2015-06-03Color customization (#245)Junegunn Choi
2015-05-22Update CHANGELOGJunegunn Choi
2015-05-22Fix ANSI offset calculation0.9.12Junegunn Choi
2015-05-22Minor refactoringJunegunn Choi
2015-05-21More test cases for --bindJunegunn Choi
2015-05-21Update --helpJunegunn Choi