summaryrefslogtreecommitdiffstats
path: root/test
AgeCommit message (Collapse)Author
2017-02-04Fix failing test caseJunegunn Choi
2017-02-03Add test case for --tiebreak=beginJunegunn Choi
2017-01-27Extend placeholder expression for multiple selectionsJunegunn Choi
Close #788
2017-01-24Allow invisible preview window (--preview-window 0)Junegunn Choi
Close #820
2017-01-22Remove unnecesasry test caseJunegunn Choi
2017-01-21Fix flakiesJunegunn Choi
2017-01-15Add --filepath-word optionJunegunn Choi
Close #802
2017-01-14Update invalid $TERM test caseJunegunn Choi
2017-01-09Retry flaky test casesJunegunn Choi
2017-01-08Add --height optionJunegunn Choi
2016-11-08Fix flaky test casesJunegunn Choi
2016-11-08Fix issues in tcell renderer and Windows buildJunegunn Choi
- Fix display of CJK wide characters - Fix horizontal offset of header lines - Add support for keys with ALT modifier, shift-tab, page-up and down - Fix util.ExecCommand to properly parse command-line arguments - Fix redraw on resize - Implement Pause/Resume for execute action - Remove runtime check of GOOS - Change exit status to 2 when tcell failed to start - TBD: Travis CI build for tcell renderer - Pending. tcell cannot reliably ingest keys from tmux send-keys
2016-10-22[vim] Respect g:fzf_colorsJunegunn Choi
Close #711
2016-10-22Make test cases less susceptible to timeout errorsJunegunn Choi
2016-10-18Use relative position instead of absolute distance for --tiebreak=endJunegunn Choi
Fix unintuitive result where `*fzf*/install` is ranked higher than `fzf/src/fzf/*fzf*-linux_386` on --tiebreak=end.
2016-09-18Printable character in --expect set should not affect --print-queryJunegunn Choi
2016-09-18Revise ranking algorithmJunegunn Choi
2016-08-13[test] Clear environment variablesJunegunn Choi
2016-07-26[vim] Add fzf#wrap helper functionJunegunn Choi
Close #627
2016-07-10[test] Fix test failure on Travis CIJunegunn Choi
No guarantee in the order in which files are listed
2016-07-10[test] Use tmux buffer in unicode test casesJunegunn Choi
Related #616
2016-07-06[vim] Restore working directory even when new window is openedJunegunn Choi
Close #612
2016-06-15Fix race condition where preview window is not properly clearedJunegunn Choi
2016-06-11Add --preview and --preview-windowJunegunn Choi
Close #587
2016-06-08Update test_execute_shell (#590)Junegunn Choi
2016-06-08Update test_execute_multi (#590)Junegunn Choi
2016-06-08Update test_execute (#590)Junegunn Choi
2016-05-18More named keys: F5 ~ F10, ALT-/Junegunn Choi
2016-05-18Add jump and jump-accept actions for --bindJunegunn Choi
jump and jump-accept implement EasyMotion-like movement in fzf. Suggested by @mhrebenyuk. Close #569.
2016-05-13Add print-query action for --bindJunegunn Choi
Close #571
2016-05-13Fix typoJunegunn Choi
2016-05-11Fix flaky test case: test_executeJunegunn Choi
Should wait until execute action completes
2016-05-11Fix flaky test case: test_file_completion_unicodeJunegunn Choi
2016-05-11Fix flaky test case: test_ctrl_t_unicodeJunegunn Choi
The width of the pseudo-terminal on Travis CI environment can be small and cause the line to be wrapped.
2016-04-25[zsh] Fix issues with unicode charactersJunegunn Choi
2016-04-24Fix flaky test casesJunegunn Choi
2016-04-24Fix incorrect cache reference in --exact mode (#547)Junegunn Choi
When we prepend a single quote to our query in --exact mode, we are not supposed to limit the scope of the new search to the previous exact-match result.
2016-04-16Enhanced ranking algorithmJunegunn Choi
Based on the patch by Matt Westcott (@mjwestcott). But with a more conservative approach: - Does not use linearly increasing penalties; It is agreed upon that we should prefer matching characters at the beginnings of the words, but it's not always clear that the relevance is inversely proportional to the distance from the beginning. - The approach here is more conservative in that the bonus is never large enough to override the matchlen, so it can be thought of as the first implicit tiebreak criterion. - One may argue the change breaks the contract of --tiebreak, but the judgement depends on the definition of "tie".
2016-04-15Fix flaky test caseJunegunn Choi
2016-03-06Fix flaky test casesJunegunn Choi
2016-03-02Fix flaky test caseJunegunn Choi
2016-03-02Add --hscroll-off=COL optionJunegunn Choi
Close #513
2016-02-16Fix #494 - _fzf_complete hangs on zsh when not using tmux paneJunegunn Choi
2016-02-03Fix #481 - Use $SHELL instead of sh in execute actionJunegunn Choi
Note that $SHELL only points to the default shell instead of the current shell. If you're on a non-default shell, you might want to override the value like follows. SHELL=zsh fzf --bind 'enter:execute:echo $ZSH_VERSION; sleep 1'
2016-01-20Make fuzzy completion customizable with _fzf_compgen_{path,dir}Junegunn Choi
Notes: - You can now override _fzf_compgen_path and _fzf_compgen_dir functions to use custom commands such as ag instead of find for listing completion candidates. - The first argument is the base path to start traversal - Removed file-only completion in bash, i.e. _fzf_file_completion. Maintaining a list of commands that only expect files, not directories, is cumbersome (there are too many) and error-prone. TBD: - Added $FZF_COMPLETION_DIR_COMMANDS to customize the list of commands which use directory-only completion. The default is "cd pushd rmdir". Not sure if it's the best approach to address the requirement, I'll leave it as an undocumented feature. Related: #406 (@thomcom), #456 (@frizinak)
2016-01-14Ignore leading whitespaces when calculating 'begin' indexJunegunn Choi
2016-01-14Change temporary file names to fix flaky testsJunegunn Choi
2016-01-13Accept comma-separated list of sort criteriaJunegunn Choi
2016-01-12[vim] Try to make 'dir' option compatible with &autochdirJunegunn Choi
When 'dir' option is passed to fzf#run(), the current working directory is temporarily changed to the given directory, and restored at the end. However, this behavior is not compatible with &autochdir. This commit introduces a heuristic to determine whether or not to restore the previous working directory. Related: https://github.com/junegunn/fzf.vim/issues/70
2015-12-29Add regression test case for #458Junegunn Choi