summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-03-09Update READMEJunegunn Choi
2014-03-09Add --black for terminals incapable of use_default_colorsJunegunn Choi
See the discussion in #18. Use --black option to use black background regardless of the default background color of the terminal. Also, this option can be used to fix rendering issues on terminals that don't support use_default_colors (man 3 default_colors). Depending on the terminal, use_default_colors may or may not succeed, but the Ruby version of it always returns nil, it's currently not possible to automatically enable this option.
2014-03-08Shift-left/right on OSX0.8.0Junegunn Choi
2014-03-08Reduce timeout to 0.1 secJunegunn Choi
2014-03-08Introduce escape time-out for better handling of escape sequencesJunegunn Choi
2014-03-08Home/End/PgUp/PgDn/Del/(Ins)Junegunn Choi
2014-03-07Add option to disable 256-color output (related #18)Junegunn Choi
2014-03-07Allow command/control-click/wheelJunegunn Choi
e.g. urxvt
2014-03-07Update gem versionJunegunn Choi
2014-03-06Reimplement mouse input without using Curses.getchJunegunn Choi
2014-03-06Completely remove mouse supportJunegunn Choi
Since the version 0.7.0, fzf internally used Curses.getch() call to take user input, which allowed it to support mouse input as well. However it has turned out that Curses.getch() has introduced glitches that cannot be easily handled (e.g. Try resize the terminal). So I finally decided that it's not worth the trouble and drop the mouse support.
2014-03-05Rename variablesJunegunn Choi
2014-03-05Synchronize getch calls to reduce screen glitchesJunegunn Choi
2014-03-05Disable typeahead optimization in Ruby 1.8Junegunn Choi
2014-03-05Performance optimization: batch application of input charsJunegunn Choi
2014-03-04Implement --extended-exact option (#24)Junegunn Choi
2014-03-04Fix #22. Keybindings for vi-mode bash.Junegunn Choi
2014-03-04Update installation instructionJunegunn Choi
2014-02-26Merge pull request #20 from wellle/zsh-history-fcJunegunn Choi
Use `fc` instead of `history` to avoid `oh-my-zsh` alias
2014-02-26Use `fc` instead of `history` to avoid omz aliasChristian Wellenbrock
2014-02-26Unalias history on zsh (related #19)Junegunn Choi
2014-02-25Merge pull request #19 from wellle/zsh_historyJunegunn Choi
Feed all zsh history into fzf (not only most recent)
2014-02-25Feed all zsh history into fzf (not only most recent)Christian Wellenbrock
2014-02-20Update version numberJunegunn Choi
2014-02-20Choose to use 256-colors when $TERM includes 256 (related: #18)Junegunn Choi
It turned out that Curses.can_change_color? returns false when $TERM is set to screen-256color, which is perfectly capable of rendering 256 colors.
2014-02-15Do not set key bindings in non-interactive shellJunegunn Choi
2014-02-13CTRL-R for bash: Unset $HISTTIMEFORMATJunegunn Choi
2014-02-07Change CTRL-T binding to include directoriesJunegunn Choi
2014-02-02Cache the result as sortedJunegunn Choi
2014-02-02Add -f (--filter) option (#15)Junegunn Choi
This commit adds --filter option so that fzf can be used as a simple unix filter instead of being an interactive fuzzy finder.
2014-02-02Install curses 1.0.0Junegunn Choi
2014-02-01Proper handling of typeahead arrow keysJunegunn Choi
To reproduce: `sleep 2; fzf` and press arrow keys
2014-02-01CTRL-L to clear and redraw the screenJunegunn Choi
2014-01-31init_screen must be called within render block0.7.1Junegunn Choi
2014-01-30Merge pull request #17 from junegunn/mouse0.7.0Junegunn Choi
Add mouse support
2014-01-30Add --no-mouse option to replace FZF_MOUSE_ENABLEDJunegunn Choi
2014-01-30Update gem versionJunegunn Choi
2014-01-30Merge branch 'master' into mouseJunegunn Choi
2014-01-30Fix `incompatible encoding regexp match` from width callJunegunn Choi
2014-01-30Update READMEJunegunn Choi
2014-01-30Minor refactoringJunegunn Choi
2014-01-30Shift-click and wheelJunegunn Choi
2014-01-29Make install script prefer system rubyJunegunn Choi
2014-01-29Do not move vcursor on select using mouseJunegunn Choi
2014-01-29Ruby 1.8 compatibilityJunegunn Choi
2014-01-28Implement mouse supportJunegunn Choi
2014-01-28Use Curses.getch to support mouse (WIP)Junegunn Choi
2014-01-22Add FZF_DEFAULT_OPTS and update command-line optionsJunegunn Choi
2014-01-14Update READMEJunegunn Choi
2014-01-07Update READMEJunegunn Choi