Commit Graph

774 Commits (9a2d9ad947bfdec98987bf965d38cfd26ae60356)
 

Author SHA1 Message Date
Junegunn Choi 9a2d9ad947 0.10.4 9 years ago
Junegunn Choi 90b0cd44ac Should not strip ANSI codes when --ansi is not set 9 years ago
Junegunn Choi 698e8008df [vim] Dynamic height specification for 'up' and 'down' options
Values for 'up' and 'down' can be written with ~ prefix. Only applies
when the source is a Vim list.

    e.g. { 'source': range(10), 'down': '~40%' }
9 years ago
Junegunn Choi 1de4cc3ba8 [install] Fall back statically-linked binary on 64-bit linux
Close #322
9 years ago
Junegunn Choi 0d66ad23c6 Fix build script 9 years ago
Junegunn Choi 7f7741099b make linux-static (#322) 9 years ago
Junegunn Choi 5a72dc6922 Fix #329 - Trim ANSI codes from output when --ansi & --with-nth are set 9 years ago
Junegunn Choi 80ed02e72e Add failing test case for #329 9 years ago
Junegunn Choi 8fb31e1b4d [vim] Escape % and # when running source command with :! 9 years ago
Junegunn Choi 148f21415a Mention fzf.vim project 9 years ago
Junegunn Choi 1c31e07d34 [install] Improve error message 9 years ago
Junegunn Choi 55d566b72f Revert "[vim] Open silently"
This reverts commit c601fc6437.
9 years ago
Junegunn Choi 60336c7423 Remove Vim examples from README.md 9 years ago
Junegunn Choi 7ae877bd3a [vim] Handle single/double quote characters in 'dir' option 9 years ago
Junegunn Choi c601fc6437 [vim] Open silently 9 years ago
Junegunn Choi e5fec408c4 [vim] tab split instead of tabedit 9 years ago
Junegunn Choi 8156e9894e 0.10.3 9 years ago
Junegunn Choi cacc212f12 [install] Prerelease of 0.10.3 9 years ago
Junegunn Choi d0f2c00f9f Fix --with-nth performance; use simpler regular expression
Related #317
9 years ago
Junegunn Choi 766427de0c Fix --with-nth performance; avoid regex if possible
Close #317
9 years ago
Junegunn Choi a7b75c99a5 [install] Stop installer when failed to download the binary
Close #312
9 years ago
Junegunn Choi bae10a6582 [install] Add an extra new line character
so that it doesn't corrupt file that doesn't end with a new line
character. Close #311.
9 years ago
Junegunn Choi c4cf90a3d2 0.10.2 9 years ago
Junegunn Choi 15c49a3e08 Fix race condition 9 years ago
Junegunn Choi ae87f6548a GoLint 9 years ago
Junegunn Choi 7833fa7396 [install] Always download binary when --pre is set 9 years ago
Junegunn Choi 9278f3acd2 [install] Add --pre option for downloading prerelease binary 9 years ago
Junegunn Choi e83ae34a3b Update CHANGELOG - 0.10.2 9 years ago
Junegunn Choi e13bafc1ab Performance fix - unnecessary rune convertion on --ansi
> time cat /tmp/list | fzf-0.10.1-darwin_amd64 --ansi -fqwerty > /dev/null

    real    0m4.364s
    user    0m8.231s
    sys     0m0.820s

    > time cat /tmp/list | fzf --ansi -fqwerty > /dev/null

    real    0m4.624s
    user    0m5.755s
    sys     0m0.732s
9 years ago
Junegunn Choi 0ea66329b8 Performance tuning - eager rune array conversion
> wc -l /tmp/list2
     2594098 /tmp/list2

    > time cat /tmp/list2 | fzf-0.10.1-darwin_amd64 -fqwerty > /dev/null

    real    0m5.418s
    user    0m10.990s
    sys     0m1.302s

    > time cat /tmp/list2 | fzf-head -fqwerty > /dev/null

    real    0m4.862s
    user    0m6.619s
    sys     0m0.982s
9 years ago
Junegunn Choi 634670e3ea Lint 9 years ago
Junegunn Choi dea60b11bc Only consider the lengths of the relevant parts when --nth is set 9 years ago
Junegunn Choi 5e90f0a57b Fix default command so that it doesn't fail on dash-prefixed files
Close #310
9 years ago
Junegunn Choi 0b4542fcdf [vim] Temporarily disable &autochdir when opening files (#306) 9 years ago
Junegunn Choi 02bd2d2adf Do not proceed if $TERM is invalid
Related #305
9 years ago
Junegunn Choi dce6fe6f2d [fzf-tmux] Ensure that the same $TERM value is used in split
Fix #305. ncurses can crash on invalid $TERM. fzf-tmux uses bash on
a new pane so we have to make sure that the $TERM is consistent with
that of the hosting shell.
9 years ago
Junegunn Choi fcae99f09b No need to "tmux list-panes" when obviously not on tmux (#303) 9 years ago
Junegunn Choi fb1b026d3d Always check if the pane is zoomed
Close #303
9 years ago
Junegunn Choi 9f953fc944 Do not use tmux pane if the current pane is zoomed
Close #303
9 years ago
Junegunn Choi 909ea1a698 0.10.1 9 years ago
Junegunn Choi 7231acd442 Fix mouse scroll when --margin is set 9 years ago
Junegunn Choi 7814371a9a Revert "0.10.1"
This reverts commit 6166e2dd80.
9 years ago
Junegunn Choi 6166e2dd80 0.10.1 9 years ago
Junegunn Choi ee0c8a2635 Add --margin option
Close #299
9 years ago
Junegunn Choi 2bebddefc0 Do not print the entire --help on invalid option 9 years ago
Junegunn Choi fdbf3d3fec Replace eof action with cancel (#289) 9 years ago
Junegunn Choi f9136cffe6 Update man page 9 years ago
Junegunn Choi 51d84b1869 [bash] Update fzf option completion 9 years ago
Junegunn Choi 13e040baee Bind CTRL-D to the new delete-char/eof action
- CTRL-D - delete-char/eof
- DEL - delete-char
9 years ago
Junegunn Choi cc0d5539ba Add "eof" action which closes the finder only when input is empty
Close #289
9 years ago