This project is mirrored from https://github.com/junegunn/fzf.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Dec 27, 2016
-
-
Junegunn Choi authored
-
- Dec 05, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Add `:wrap` to --preview-window to wrap lines instead Close #756
-
- Nov 27, 2016
-
-
Junegunn Choi authored
-
- Nov 26, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #357 Close #738
- Nov 25, 2016
-
-
Junegunn Choi authored
TAGS=tcell make install printf "\x1b[38;2;100;200;250mTRUECOLOR\x1b[m\n" | TERM=xterm-truecolor fzf --ansi
-
Junegunn Choi authored
: | fzf --preview 'echo foo'
-
- Nov 24, 2016
-
-
Junegunn Choi authored
-
- Nov 23, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
To build fzf with ncurses 6 on macOS: brew install homebrew/dupes/ncurses LDFLAGS="-L/usr/local/opt/ncurses/lib" make install
-
Junegunn Choi authored
Also reduce the default delay to 50ms. We should not set it to 0ms as it breaks escape sequences on WSL. If 50ms is not enough, one can increase the delay by setting $ESCDELAY to a larger value.
-
Junegunn Choi authored
-
- Nov 19, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Also add support for alt-[0-9] and f1[12]
- Nov 15, 2016
-
-
Junegunn Choi authored
-
- Nov 14, 2016
-
-
Junegunn Choi authored
The updated regular expression should include not all but most of the frequently used ANSI sequences. Close #735.
-
- Nov 09, 2016
-
-
Junegunn Choi authored
Close #732
-
Junegunn Choi authored
- Nov 08, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #661
-
Junegunn Choi authored
- 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
-
- Nov 07, 2016
-
-
Michael Kelley authored
-
Junegunn Choi authored
`TAGS=termbox make` (or `go build -tags termbox`)
-
- Oct 30, 2016
-
-
Junegunn Choi authored
This reverts commit 02c6ad0e.
-
Junegunn Choi authored
https://github.com/junegunn/fzf/issues/391#issuecomment-257090266 e.g. fzf --preview 'printf "$(tput setaf 2)foo$(tput sgr0)bar\nbar\n"'
-
- Oct 28, 2016
-
-
Junegunn Choi authored
Close #722
-
- Oct 23, 2016
-
- Oct 21, 2016
-
-
Junegunn Choi authored
Close #712
-
Junegunn Choi authored
-
- Oct 18, 2016
-
-
Junegunn Choi authored
Fix unintuitive result where `*fzf*/install` is ranked higher than `fzf/src/fzf/*fzf*-linux_386` on --tiebreak=end.
-
- Oct 04, 2016
-
-
Junegunn Choi authored
This is a breaking change, but I believe it makes much more sense. It is almost impossible to predict which entries will be filtered out due to a fuzzy inverse term. You can still perform inverse-fuzzy-match by prepending `!'` to the term. | Token | Match type | Description | | -------- | -------------------------- | --------------------------------- | | `sbtrkt` | fuzzy-match | Items that match `sbtrkt` | | `^music` | prefix-exact-match | Items that start with `music` | | `.mp3$` | suffix-exact-match | Items that end with `.mp3` | | `'wild` | exact-match (quoted) | Items that include `wild` | | `!fire` | inverse-exact-match | Items that do not include `fire` | | `!.mp3$` | inverse-suffix-exact-match | Items that do not end with `.mp3` |
-
Junegunn Choi authored
-
Junegunn Choi authored
It was possible that a few lines at the bottom may not be visible if there are lines above that span multiple lines.