summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2015-04-16Add visual indication of --toggle-sortJunegunn Choi
Close #194
2015-04-16Prepare for 0.9.9 releaseJunegunn Choi
2015-04-16Add --tiebreak option for customizing sort criteriaJunegunn Choi
Close #191
2015-04-16Add --no-hscroll option to disable horizontal scrollJunegunn Choi
Close #193
2015-04-16Remove unused variableJunegunn Choi
2015-04-14Fix #185 - Terminate on RuneErrorJunegunn Choi
2015-04-14Fix Unicode case handling (#186)Junegunn Choi
2015-03-31Implement --toggle-sort option (#173)Junegunn Choi
2015-03-31Fix #172 - Print empty line when fzf with expect finished by -1 or -0Junegunn Choi
2015-03-29Retain ANSI background colorJunegunn Choi
2015-03-29Implement --expect option to support simple key bindings (#163)Junegunn Choi
2015-03-27Drop patch number and stick with M.m.p conventionJunegunn Choi
2015-03-27Fix #162 - Ignore \e[KJunegunn Choi
2015-03-23Fix #155 - Empty ANSI color code to reset color stateJunegunn Choi
2015-03-22Update --help messageJunegunn Choi
2015-03-22Respect "boldness" of input stringJunegunn Choi
2015-03-22Fix ANSI output in the presence of multibyte charactersJunegunn Choi
tree -C | fzf --ansi --tac
2015-03-22Code cleanupJunegunn Choi
2015-03-19Fix #151 - reduce initial memory footprintJunegunn Choi
2015-03-19Bump up the version - 0.9.5Junegunn Choi
2015-03-19Fix #149 - panic on empty string filterJunegunn Choi
2015-03-19Fix string truncationJunegunn Choi
2015-03-19Add support for ANSI color codesJunegunn Choi
2015-03-01Build with Go 1.4.2Junegunn Choi
2015-03-01Make --filter non-blocking when --no-sort (#132)Junegunn Choi
When fzf works in filtering mode (--filter) and sorting is disabled (--no-sort), there's no need to block until input is complete. This commit makes fzf print the matches on-the-fly when the following condition is met: --filter FILTER --no-sort [--no-tac --no-sync] or simply: -f FILTER +s This removes unnecessary delay in use cases like the following: fzf -f xxx +s | head -5 However, in this case, fzf processes the input lines sequentially, so it cannot utilize multiple cores, which makes it slightly slower than the previous mode of execution where filtering is done in parallel after the entire input is loaded. If the user is concerned about the performance problem, one can add --sync option to re-enable buffering.
2015-02-26Add --tac option and reverse display order of --no-sortJunegunn Choi
DISCLAIMER: This is a backward incompatible change
2015-02-18Fix race condition in asynchronous -1 and -0Junegunn Choi
2015-02-18Make --select-1 and --exit-0 asynchronousJunegunn Choi
2015-02-17Fix typo in codeJunegunn Choi
2015-02-13Add `--sync` optionJunegunn Choi
2015-01-240.9.20.9.2Junegunn Choi
2015-01-24Fix error when --query contains wide-length charactersJunegunn Choi
2015-01-24Improve rendering performance by caching rune widthsJunegunn Choi
Related: 8bead4a
2015-01-23Fix update_assets scriptJunegunn Choi
2015-01-23Redraw and adjust upon terminal resizeJunegunn Choi
2015-01-23Nullify --nth option when it's irrelevantJunegunn Choi
2015-01-18Improved handling of tab charactersJunegunn Choi
2015-01-18Update src/README.mdJunegunn Choi
2015-01-18Add note on installationJunegunn Choi
2015-01-170.9.1Junegunn Choi
2015-01-17Add script for updating release assetsJunegunn Choi
2015-01-17Print selected items in the order they are selectedJunegunn Choi
2015-01-17Use Go 1.4.1 to build linux binariesJunegunn Choi
2015-01-17Do not build i386 binary on Travis CI to speed up the processJunegunn Choi
2015-01-17Fix CTRL-Y key bindingJunegunn Choi
With tmux-based test cases
2015-01-15Fix error with empty list and release 0.9.1-devJunegunn Choi
2015-01-14Remove brew targetJunegunn Choi
2015-01-14Add GIF to src/READMEJunegunn Choi
2015-01-14Update install/build script from Homebrew0.9.0Junegunn Choi
2015-01-13`make archive` for homebrew releaseJunegunn Choi