Commit Graph

82 Commits (dd6138a6559363871d88c594ab9d170e36959129)

Author SHA1 Message Date
Junegunn Choi dd6138a655 Fix #142, #144 - Improve CTRL-R for zsh 9 years ago
Junegunn Choi 68c5bea3f8 Fix install script for platforms w/o matching Go binary (#141) 9 years ago
Junegunn Choi c1aa5c5f33 Add --tac option and reverse display order of --no-sort
DISCLAIMER: This is a backward incompatible change
9 years ago
Junegunn Choi 4a1752d3fc 0.9.3 9 years ago
Junegunn Choi ff09c275d4 Fix bash script when fzf_base contains spaces 9 years ago
Daniel Hahler 53d5d9d162 Improve `find` command for cd widgets: exclude proc/dev etc
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
9 years ago
Junegunn Choi 9cb0cdb4ac 0.9.2 9 years ago
Junegunn Choi a3101120fd Update install script 10 years ago
Junegunn Choi 30f9651f99 0.9.1 10 years ago
Junegunn Choi 62acb9adc4 Fix error with empty list and release 0.9.1-dev 10 years ago
Junegunn Choi a3068a33d5 Update install/build script from Homebrew 10 years ago
Junegunn Choi b8c4b35415 `make archive` for homebrew release 10 years ago
Junegunn Choi 5c491d573a Fix fzf.{bash,zsh} when Go version is not supported 10 years ago
Junegunn Choi 23f27f3ce5 Improve install script 10 years ago
Junegunn Choi b277f5ae6f Fix i386 build 10 years ago
Junegunn Choi 3e6c950e12 Build i386 binary as well 10 years ago
Junegunn Choi 82156d34cc Update Makefile and install script
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.
10 years ago
Junegunn Choi ea25e9674f Refactor install script 10 years ago
Junegunn Choi 8e5ecf6b38 Update Makefile and installer to use version number 10 years ago
Junegunn Choi 53bce0581e Update fish function 10 years ago
Junegunn Choi f9f9b671c5 Ask if fzf executable already exists 10 years ago
Junegunn Choi 0a6cb62169 Fall back to Ruby version when download failed 10 years ago
Junegunn Choi 9930a1d4d9 Update install script to download tarball 10 years ago
Junegunn Choi f3177305d5 Rewrite fzf in Go 10 years ago
brettanomyces ee433ef6e9 reverse history for fish shell 10 years ago
Arseniy Seroka 0296fcb5cd bash -> env bash 10 years ago
Junegunn Choi 4ee85f11e8 [install] Join line numbers when multiple matches found 10 years ago
Miles Whittaker 990fa00660 Check before sourcing, no longer need to remove 10 years ago
Miles Whittaker 77592825f0 Sometimes users prefer . instead of source
So only check for file name
10 years ago
Miles Whittaker ce53b9b2a5 Ignore user-defined grep aliases 10 years ago
Junegunn Choi 80efafcceb Fix ALT-C keybinding to include symlinked directories
Related #95.
10 years ago
Junegunn Choi d5e7303a25 Change --nth option for CTRL-R key binding (#90)
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
10 years ago
Junegunn Choi a54784cd53 Display 'gem install curses' when curses cannot be loaded 10 years ago
Sencer Selcuk 7261d3afcd allow installation with sudo privileges 10 years ago
Junegunn Choi daf08f801f [fish] Fix fish key binding issues (#60)
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
10 years ago
Patrick Donelan 30cdc06bcd Add vi-command keymap mappings
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.
10 years ago
Sencer Selcuk 3827a1b09e Use `command find` rather than plain `find`
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.
10 years ago
Junegunn Choi f8e357fa19 Extend --nth option to take ranges
As discussed in #55
10 years ago
Junegunn Choi ed13fc8618 Fix fzf-history-widget (#48) 10 years ago
Chad Skeeters edf27f47f2 removed tailing substitution causing all trailing space to be removed when extendedglob is set 10 years ago
Tom Cammann 1e02471940 Update install
Update sed regex to strip "*" from history lines when using tmux and fc
e.g. "637* ls -a"
10 years ago
Junegunn Choi 6a1b916598 OK 10 years ago
Junegunn Choi f37be006c3 Update uninstall script 10 years ago
Junegunn Choi f250fc8f86 Fix #41: [CTRL-T] long file paths causing wrapping artifacts 10 years ago
Junegunn Choi 6eea9603c2 Fix bug in install script 10 years ago
Junegunn Choi b3efccca81 [fish] Remove temporary file after use 10 years ago
Junegunn Choi 7d15071c63 Fish shell support - installer / key bindings (#33) 10 years ago
Junegunn Choi 89eb1575e7 Simpler check for curses 10 years ago
Junegunn Choi 608ec2b806 set -o nonomatch for zsh (#34)
Avoid error message in an empty directory
10 years ago
Junegunn Choi e5ae4f0ef6 Do not load interactive parts when not required (#34) 10 years ago