summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2020-07-05Support ANSI colors in --prompt stringJunegunn Choi
Close #2086
2020-07-03Ignore cursor position reportJunegunn Choi
Close #2081
2020-07-03Use rune characters instaed of numbers in codeJunegunn Choi
2020-06-21Merge branch 'master' into develJunegunn Choi
2020-06-21Add preview action for --bindJunegunn Choi
Fix #2010 Fix #1638
2020-06-21Accented character normalization for Vietnamese characters (#2090)Khon Trieu
Fix #2088
2020-06-20Add refresh-preview actionJunegunn Choi
2020-06-07Add backward-eof event for --bindJunegunn Choi
2020-05-18Do not disable mouse after execute(-silent) when --height option is usedJunegunn Choi
The action takes place in the alternate screen so the offsets should still be correct.
2020-04-13Run rubocop --auto-correct --disable-uncorrectable (#1967)Jack Bates
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2020-04-030.21.10.21.1Junegunn Choi
2020-03-30Update AtomicBool to use atomic memory operation (#1939)Alexandr
2020-03-23Fix ANSI color offsets when --keep-right is usedJunegunn Choi
2020-03-14[windows] Do not include directories in the listJunegunn Choi
Fix #1926
2020-03-120.21.00.21.0Junegunn Choi
2020-03-11Add --keep-right option to keep the right end of the line visibleJunegunn Choi
Close #1652
2020-03-10Make height option work under Windows (#1341)Michael Kelley
Separate Unix & Windows code into platform specific files for light renderer
2020-03-07Do not read more than 10K characters from /dev/ttyJunegunn Choi
This might help with #1456 where fzf hangs consuming CPU resources.
2020-03-05Add more --border options; default changed to "rounded"Junegunn Choi
--border option now takes an optional argument that defines the style - rounded (new default) - sharp - horizontal (previous default)
2020-03-03Ignore xterm OSC control sequencesJunegunn Choi
- OSC Ps ; Pt BEL - OSC Ps ; Pt ST Fix #1415
2020-03-01Fix prefix/suffix/equal matcher to trim whitespacesJunegunn Choi
- Prefix matcher will trim leading whitespaces only when the pattern doesn't start with a whitespace - Suffix matcher will trim trailing whitespaces only when the pattern doesn't end with a whitespace - Equal matcher will trim leading whitespaces only when the pattern doesn't start with a whitespace, and trim trailing whitespaces only when the pattern doesn't end with a whitespace Previously, only suffix matcher would trim whitespaces unconditionally. Fix #1894
2020-02-28Add backward-delete-char/eof action (#1891)James Wright
'backward-delete-char/eof' will either abort if query is empty or delete one character backwards.
2020-02-24Add 'insert' key for --bindJunegunn Choi
Close #1744
2020-02-24Fix panic on unexpected escape sequencesJunegunn Choi
2020-02-18Update ANSI processor to handle "rmso" and "rmul"Junegunn Choi
Fix #1877
2020-02-17Make pointer and multi-select marker customizable (#1844)Hiroki Konishi
Add --pointer and --marker option which can provide additional context to the user
2020-02-16Fix bug of validation of jump-labels (#1875)Hiroki Konishi
When jump-labels are specified with `--jump-labels=` way, validation was not carried out.
2020-02-06Fix inline info truncationJunegunn Choi
2020-02-04[windows] Use native walker since output of DOS command is not UTF-8 encoded ↵mattn
(#1847) Makes scanning 300x faster on Windows
2020-01-25Update copyright year (#1832)Shun Sakai
Update copyright year to 2020 and change to multi-year format.
2020-01-19Show error message when failed to start preview command (#1810)Tony Metzidis
Fix #1637
2020-01-19Add pledge(2) support (OpenBSD only) via a 'protector' package. (#1297)Aaron Bieber
2020-01-18Fix F1, F2, F3, F4 on rxvt-unicodeJunegunn Choi
Tested on urxvt. Fix #1799.
2020-01-15Draw spinner with Unicode charactersJunegunn Choi
2019-12-31Use rounded cornersJunegunn Choi
2019-12-180.20.00.20.0Junegunn Choi
2019-12-16Fix incorrect header array mutationJunegunn Choi
2019-12-12Add preview-fg and preview-bg for --colorJunegunn Choi
Close #1776
2019-12-12Gutter color of 16-color theme should be undefined by defaultJunegunn Choi
2019-12-09Defer resetting multi-selection on reloadJunegunn Choi
2019-12-07Add clear-query and clear-selectionJunegunn Choi
Close #1787 Related #1364
2019-12-06Properly clear list when --header-lines not filled on reloadJunegunn Choi
2019-12-06'reload' action should be allowed even where there's no matchJunegunn Choi
If the command template doesn't have any placeholder expressions. : | fzf --bind 'space:reload:seq 10'
2019-12-05Remove immediate flickering on reload actionJunegunn Choi
2019-11-21Allow action composition over multiple --bindJunegunn Choi
# Note + prefix in the second bind expression fzf --bind u:up --bind u:+up fzf --bind u:up+up
2019-11-21Fix parse error of --bind expressionJunegunn Choi
2019-11-150.19.00.19.0Junegunn Choi
2019-11-15Fix --preview-window noborder with non-default background colorJunegunn Choi
2019-11-15Update error message for --preview-windowJunegunn Choi
2019-11-15Add `--preview-window noborder` option to disable preview borderJunegunn Choi
Close #1699