summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2017-03-02Suppress ANSI colors in preview window if --no-color is setJunegunn Choi
2017-03-01Clear background even if background color is not setJunegunn Choi
This is needed when fzf is started from inside a program (e.g. Vim) and it uses a different background color than the terminal. - https://github.com/junegunn/fzf.vim/issues/325 - https://github.com/junegunn/fzf.vim/issues/300
2017-02-24Redraw item if query string has changedJunegunn Choi
2017-02-190.16.50.16.5Junegunn Choi
2017-02-19Exclude sysfs in find commandsJunegunn Choi
2017-02-18Add toggle-preview-wrap actionJunegunn Choi
2017-02-18Properly truncate long query stringJunegunn Choi
2017-02-17Use cut instead of sed in the default commandJunegunn Choi
2017-02-14Fix indentationJunegunn Choi
2017-02-14Move cursor to the top-left when returning to alternate screenJunegunn Choi
Fix broken preview border. Reported by Thomas Sattler. fzf --bind 'enter:execute(date)' --preview=date --reverse
2017-02-06Remove Dockerfiles and clean up MakefileJunegunn Choi
Due to the recent removal of ncurses dependency, we can cross-compile binaries for different platforms without virtual machines.
2017-02-050.16.40.16.4Junegunn Choi
2017-02-04Add --border option to draw horizontal lines above and below the finderJunegunn Choi
Goes well with --height
2017-02-02Fix --tiebreak=begin with algo v2Junegunn Choi
Due to performance consideration, FuzzyMatchV2 does not return the exact positions of the matching characters by default. However, the ommission caused `--tiebreak=begin` to produce inaccurate result in some cases. (echo baz foo bar; echo foo bar baz) | fzf --tiebreak=begin -fbar | head -1 # Expected: foo bar baz # Actual: baz foo bar This commit fixes the problem by using the end offset which is guaranteed to be correct.
2017-02-02Suppress CSI codes in the outputJunegunn Choi
2017-02-02Update ANSI processor to strip ^H along with its preceding characterJunegunn Choi
2017-02-02Update go-runewidthJunegunn Choi
https://github.com/junegunn/go-runewidth/pull/1 /cc @joshuarubin
2017-02-01Fix caching scheme when --exact is set and '-prefix is usedJunegunn Choi
2017-01-300.16.30.16.3Junegunn Choi
2017-01-30Fix display issues with execute actionJunegunn Choi
- Move cursor to the top-left corner when starting a command in alternate screen - Fix cursor position when returning to alternate screen when fzf is running in full screen mode
2017-01-28Add support for ctrl-space keyJunegunn Choi
Close #825
2017-01-27Add execute-silent actionJunegunn Choi
Close #823
2017-01-27Extend placeholder expression for multiple selectionsJunegunn Choi
Close #788
2017-01-26Add --read0 and --print0 to --help outputJunegunn Choi
Close #822
2017-01-25Recalculate the width of trimmed lineJunegunn Choi
Close #821
2017-01-240.16.20.16.2Junegunn Choi
2017-01-24Allow invisible preview window (--preview-window 0)Junegunn Choi
Close #820
2017-01-23Delete every line below the cursorJunegunn Choi
2017-01-23Minor refactoringJunegunn Choi
2017-01-23Cursor postition response can be preceded by user key strokesJunegunn Choi
2017-01-23Disable mouse if failed to query cursor positionJunegunn Choi
2017-01-23Fix make deps to see the right git dirJunegunn Choi
2017-01-22Allow build on OpenBSD/FreeBSD/AndroidJunegunn Choi
Close #497
2017-01-22Update release script to upload assets in parallelJunegunn Choi
2017-01-22Fix bug where screen is not properly cleared on toggle-previewJunegunn Choi
2017-01-22Drop ncurses dependencyJunegunn Choi
Close #818
2017-01-22Use alternate screen if --height needs the entire screenJunegunn Choi
- Remove unnecessary scrolling - Allow us to use `--height 100%` under Neovim terminal for 24-bit colors Related: - #789 - https://github.com/neovim/neovim/issues/4151
2017-01-22Clear lines even when background color is not setJunegunn Choi
Also revert the workaround in Vim plugin introduced in fa7c897. Related: #814
2017-01-22make depsJunegunn Choi
2017-01-22Composable actions in --bindJunegunn Choi
Close #816
2017-01-160.16.10.16.1Junegunn Choi
2017-01-16Propertly fill window with background colorJunegunn Choi
Close #805
2017-01-16Add -L flag to the default find commandJunegunn Choi
Close #781
2017-01-16Add half-page-{up,down} actions (#784)Amos Bird
2017-01-160.16.0Junegunn Choi
2017-01-16Optimize LightRenderer for slow terminalsJunegunn Choi
2017-01-15Add --filepath-word optionJunegunn Choi
Close #802
2017-01-15Replace --normalize with --literal and enable normalization by defaultJunegunn Choi
Ref #790
2017-01-15Use crypto/ssh/terminal instead of external stty commandJunegunn Choi
2017-01-11Print error message to stderr on unexpected exitJunegunn Choi