summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
AgeCommit message (Collapse)Author
2016-06-08Use single-quoted strings in execute actionJunegunn Choi
Close #590
2016-05-190.12.20.12.2Junegunn Choi
2016-04-250.12.10.12.1Junegunn Choi
2016-04-160.11.2Junegunn Choi
2016-03-030.11.40.11.4Junegunn Choi
2016-02-070.11.30.11.3Junegunn Choi
2016-01-16Update CHANGELOG0.11.2Junegunn Choi
2016-01-16Update CHANGELOG: 0.11.2Junegunn Choi
2016-01-140.11.2Junegunn Choi
2016-01-14Ignore leading whitespaces when calculating 'begin' indexJunegunn Choi
2016-01-13Accept comma-separated list of sort criteriaJunegunn Choi
2015-11-30Add --tabstop optionJunegunn Choi
Related: https://github.com/junegunn/fzf.vim/issues/49
2015-11-100.11.00.11.0Junegunn Choi
2015-11-03Setup signal handlers before ncurses initializationJunegunn Choi
This prevents fzf from missing SIGWINCH during startup which occasionally happens with fzf-tmux
2015-11-03Make --extended defaultJunegunn Choi
Close #400
2015-10-090.10.80.10.8Junegunn Choi
2015-10-050.10.70.10.7Junegunn Choi
2015-09-19Revert "Revert "0.10.6""Junegunn Choi
This reverts commit 987799f8fbd2367fe99383a1ddf9ddf5d4ed253f.
2015-09-19Revert "0.10.6"Junegunn Choi
This reverts commit d2f3604c1dd176b485ab82cebc956560f2e73657.
2015-09-190.10.6Junegunn Choi
2015-09-15Replace --header-file with --header (#346)Junegunn Choi
and allow using --header and --header-lines at the same time. Close #346.
2015-09-120.10.5Junegunn Choi
2015-08-290.10.40.10.4Junegunn Choi
2015-08-11Fix --with-nth performance; use simpler regular expressionJunegunn Choi
Related #317
2015-08-10Fix --with-nth performance; avoid regex if possibleJunegunn Choi
Close #317
2015-08-02Update CHANGELOG - 0.10.2Junegunn Choi
2015-07-26Add --margin optionJunegunn Choi
Close #299
2015-07-23Replace eof action with cancel (#289)Junegunn Choi
2015-07-23Bind CTRL-D to the new delete-char/eof actionJunegunn Choi
- CTRL-D - delete-char/eof - DEL - delete-char
2015-07-22Add "eof" action which closes the finder only when input is emptyJunegunn Choi
Close #289
2015-07-22Update CHANGELOGJunegunn Choi
2015-06-210.10.0Junegunn Choi
2015-06-030.9.130.9.13Junegunn Choi
2015-05-22Update CHANGELOGJunegunn Choi
2015-05-210.9.12Junegunn Choi
2015-04-220.9.11Junegunn Choi
2015-04-18Add `--color=[dark|light|16|bw]` optionJunegunn Choi
- dark: the current default for 256-color terminal - light: color scheme for 256-color terminal with light background - 16: the default color scheme for 16-color terminal (`+2`) - bw: no colors (`+c`)
2015-04-17Improvements in performance and memory usageJunegunn Choi
I profiled fzf and it turned out that it was spending significant amount of time repeatedly converting character arrays into Unicode codepoints. This commit greatly improves search performance after the initial scan by memoizing the converted results. This commit also addresses the problem of unbounded memory usage of fzf. fzf is a short-lived process that usually processes small input, so it was implemented to cache the intermediate results very aggressively with no notion of cache expiration/eviction. I still think a proper implementation of caching scheme is definitely an overkill. Instead this commit introduces limits to the maximum size (or minimum selectivity) of the intermediate results that can be cached.
2015-04-16Add visual indication of --toggle-sortJunegunn Choi
Close #194
2015-04-16Prepare for 0.9.9 releaseJunegunn 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-29Implement --expect option to support simple key bindings (#163)Junegunn Choi
2015-03-22Update CHANGELOG - 0.9.5Junegunn Choi
2015-03-01Update CHANGELOGJunegunn Choi
2015-02-26Add --tac option and reverse display order of --no-sortJunegunn Choi
DISCLAIMER: This is a backward incompatible change