summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-11-090.15.70.15.7Junegunn Choi
2016-11-09Fix panic when color is disabled and header lines contain ANSI colorsJunegunn Choi
Close #732
2016-11-090.15.60.15.6Junegunn Choi
2016-11-09Fix --color=bw on tcell buildJunegunn Choi
2016-11-09Merge pull request #730 from laur89/masterJunegunn Choi
Minor README markup fix
2016-11-08Minor README markup fix.Laur Aliste
2016-11-08GOOS=windows make releaseJunegunn Choi
2016-11-08Wait for additional keys after ESC for up to 100msJunegunn Choi
Close #661
2016-11-08Fix flaky test casesJunegunn Choi
2016-11-08Fix issues in tcell renderer and Windows buildJunegunn Choi
- 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
2016-11-07Implement tcell-based rendererMichael Kelley
2016-11-07Prepare for termbox/windows buildJunegunn Choi
`TAGS=termbox make` (or `go build -tags termbox`)
2016-11-01`man fzf` in READMEJunegunn Choi
Close #726
2016-10-30Update ANSI processor to ignore ^N and ^OJunegunn Choi
This reverts commit 02c6ad0e59be75981baeb1f41cb0bad03aad1c6b.
2016-10-30Strip ^N and ^O from preview outputJunegunn Choi
https://github.com/junegunn/fzf/issues/391#issuecomment-257090266 e.g. fzf --preview 'printf "$(tput setaf 2)foo$(tput sgr0)bar\nbar\n"'
2016-10-28Fix header lines being cleared on toggle-previewJunegunn Choi
Close #722
2016-10-230.15.50.15.5Junegunn Choi
2016-10-22[vim] Respect g:fzf_colorsJunegunn Choi
Close #711
2016-10-22Make test cases less susceptible to timeout errorsJunegunn Choi
2016-10-21Set foreground color without affecting backgroundJunegunn Choi
Close #712
2016-10-21Allow other options to follow --color without specJunegunn Choi
2016-10-18[vim] Set g:loaded_fzfJunegunn Choi
2016-10-18Use relative position instead of absolute distance for --tiebreak=endJunegunn Choi
Fix unintuitive result where `*fzf*/install` is ranked higher than `fzf/src/fzf/*fzf*-linux_386` on --tiebreak=end.
2016-10-14Merge pull request #701 from nthapaliya/zsh_script_improvementsJunegunn Choi
[zsh] GNU coreutils compatibility
2016-10-13Use `command` to ignore shell functionNiraj Thapaliya
2016-10-13Gnu `[` evaluates both sides of a -o condition regardlessNiraj Thapaliya
It doesn't short circuit like we expect, causing trouble when $dir is empty Use shell builtin instead
2016-10-13[fzf-tmux] Fix bash conditionJunegunn Choi
Fix #702
2016-10-12[fzf-tmux/vim/nvim] Do not split small windowJunegunn Choi
Close #699
2016-10-12Merge pull request #698 from Ambrevar/masterJunegunn Choi
[fish] Yank commandline in fzf-history-widget
2016-10-11key-bindings.fish: Yank commandline in fzf-history-widgetPierre Neidhardt
2016-10-040.15.40.15.4Junegunn Choi
2016-10-04Use exact match by default for inverse search termJunegunn Choi
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` |
2016-10-04Display scroll indicator in preview windowJunegunn Choi
2016-10-04Adjust maximum scroll offsetJunegunn Choi
It was possible that a few lines at the bottom may not be visible if there are lines above that span multiple lines.
2016-10-04[vim] Apply --multi and --prompt to :FZF commandJunegunn Choi
2016-10-03Support field index expressions in preview and execute actionJunegunn Choi
Also close #679. The placeholder for the current query is {q}.
2016-09-29Use unicode.IsSpace to cover more whitespace charactersJunegunn Choi
2016-09-290.15.30.15.3Junegunn Choi
2016-09-29Fix SEGV when trying to render preview but the window is closedJunegunn Choi
Close #677
2016-09-29Fix failing unit tests on ANSI attributesJunegunn Choi
2016-09-29Add support for more ANSI color attributes (#674)Junegunn Choi
Dim, underline, blink, reverse
2016-09-26Update man page: missing actionsJunegunn Choi
2016-09-250.15.20.15.2Junegunn Choi
2016-09-25Ignore VT100-related escape codesJunegunn Choi
2016-09-25Support high intensity colorsJunegunn Choi
Close #671
2016-09-25Merge pull request #670 from maverickwoo/fix-668Junegunn Choi
[bash-completion] Fix #668
2016-09-24Fix #668Maverick Woo
Handle uppercase letters in program names. This also deals with `-` and `.`, both of which are quite common in program names, e.g., `xdg-open` and `foo.sh`.
2016-09-25Add preview-page-up and preview-page-down actionsJunegunn Choi
2016-09-25Make preview windows scrollableJunegunn Choi
Close #669 You can use your mouse or binadble preview-up and preview-down actions to scroll the content of the preview window. fzf --preview 'highlight -O ansi {}' --bind alt-j:preview-down,alt-k:preview-up
2016-09-210.15.10.15.1Junegunn Choi