summaryrefslogtreecommitdiffstats
path: root/install
AgeCommit message (Collapse)Author
2015-04-16Prepare for 0.9.9 releaseJunegunn Choi
2015-04-14Fix Unicode case handling (#186)Junegunn Choi
2015-04-13install: wait for LF in non-interactive shellJustin M. Keyes
"read -n 1 ..." ignores all but the first character of a line-delimited stream (e.g. "yes n | ./install").
2015-03-31Implement --toggle-sort option (#173)Junegunn Choi
2015-03-29Implement --expect option to support simple key bindings (#163)Junegunn Choi
2015-03-26Append (not prepend) bin directory to PATHJunegunn Choi
Prepending can be problematic when the user install fzf using Homebrew, execute the install script, and later upgrade fzf with Homebrew, and do not rerun the install script. In that case, even though the homebrew package is upgraded, the older version will still be used.
2015-03-26Avoid duplicate paths in MANPATHJunegunn Choi
2015-03-26Add man path only when the directory existsJunegunn Choi
$fzf_base/man may not exist when installed with Homebrew.
2015-03-26Add man page (#157)Junegunn Choi
2015-03-19Bump up the version - 0.9.5Junegunn Choi
2015-03-13Refactor shell extensionsJunegunn Choi
- Use symlinks instead of generating the full content - Update fish_user_paths and remove ~/.config/fish/functions/fzf.fish - Create wrapper script for fzf when Ruby version and use it instead of exported function not to break fzf-tmux
2015-03-13Fix #142, #144 - Improve CTRL-R for zshJunegunn Choi
2015-03-12Fix install script for platforms w/o matching Go binary (#141)Junegunn Choi
2015-02-26Add --tac option and reverse display order of --no-sortJunegunn Choi
DISCLAIMER: This is a backward incompatible change
2015-02-180.9.30.9.3Junegunn Choi
2015-02-12Fix bash script when fzf_base contains spacesJunegunn Choi
2015-01-25Improve `find` command for cd widgets: exclude proc/dev etcDaniel Hahler
When using the widget in "/", it would descend into 'dev/'. Using '*' for the starting path would do so also with the new '-fstype' excludes. `cut -b3-` and `sed 1d` have been added to massage the different format of the list. This also uses `-L` with all calls to find, especially for the file finders. Ref: https://github.com/junegunn/fzf/pull/122
2015-01-240.9.20.9.2Junegunn Choi
2015-01-17Update install script0.9.1Junegunn Choi
2015-01-170.9.1Junegunn Choi
2015-01-15Fix error with empty list and release 0.9.1-devJunegunn Choi
2015-01-14Update install/build script from Homebrew0.9.0Junegunn Choi
2015-01-13`make archive` for homebrew releaseJunegunn Choi
2015-01-13Fix fzf.{bash,zsh} when Go version is not supportedJunegunn Choi
2015-01-07Improve install scriptJunegunn Choi
2015-01-07Fix i386 buildJunegunn Choi
2015-01-06Build i386 binary as wellJunegunn Choi
2015-01-05Update Makefile and install scriptJunegunn Choi
fzf may not run correctly on some OS even when the binary the platform is successfully downloaded. The install script is updated to check if the system has no problem running the executable and fall back to Ruby version when necessary.
2015-01-05Refactor install scriptJunegunn Choi
2015-01-05Update Makefile and installer to use version numberJunegunn Choi
2015-01-04Update fish functionJunegunn Choi
2015-01-04Ask if fzf executable already existsJunegunn Choi
2015-01-04Fall back to Ruby version when download failedJunegunn Choi
2015-01-04Update install script to download tarballJunegunn Choi
2015-01-04Rewrite fzf in GoJunegunn Choi
2014-12-13reverse history for fish shellbrettanomyces
2014-11-30bash -> env bashArseniy Seroka
2014-09-18[install] Join line numbers when multiple matches foundJunegunn Choi
2014-09-18Check before sourcing, no longer need to removeMiles Whittaker
2014-09-17Sometimes users prefer . instead of sourceMiles Whittaker
So only check for file name
2014-09-14Ignore user-defined grep aliasesMiles Whittaker
2014-08-31Fix ALT-C keybinding to include symlinked directoriesJunegunn Choi
Related #95.
2014-08-17Change --nth option for CTRL-R key binding (#90)Junegunn Choi
Remove `1` from --nth option. With the change you can no more use `$` anchor to match the tail of a command index. But it makes search around 15% faster. jg@jg:~> time cat history | fzf +s -n..,1,2.. -f fzf > /dev/nul real 0m2.929s user 0m2.766s sys 0m0.154s jg@jg:~> time cat history | fzf +s -n2..,.. -f fzf > /dev/null real 0m2.535s user 0m2.422s sys 0m0.112s
2014-07-27Display 'gem install curses' when curses cannot be loadedJunegunn Choi
2014-07-15allow installation with sudo privilegesSencer Selcuk
2014-07-06[fish] Fix fish key binding issues (#60)Junegunn Choi
Although a major overhaul is ongoing (#67), it is not yet finished and cannot be considered stable enough for the next release. This commit fixes a few apparent issues with small change to the current implementation. - Fixed error when $TMPDIR is not defined - Better escaping of file/directory names - Splitted functions to workaround fish bug
2014-06-23Add vi-command keymap mappingsPatrick Donelan
fzf does not currently define vi-command mode mappings. This is particularly annoying for <C-r>, which opens bash's old-fashioned recursive history search. This patch adds vi-command mode mappings that simply drop back into vi-insert mode ("i") and then trigger the primary mapping.
2014-06-18Use `command find` rather than plain `find`Sencer Selcuk
Aliases are expanded in shell scripts, and one may have an alias for the `find` command that conflicts with fzf. So make sure fzf is using real find command rather than the alias.
2014-06-14Extend --nth option to take rangesJunegunn Choi
As discussed in #55
2014-05-29Fix fzf-history-widget (#48)Junegunn Choi