summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-10-06Fix preview window size calculationJunegunn Choi
2020-10-06Allow splitting preview-window optionsJunegunn Choi
e.g. --preview-window sharp --preview-window cycle
2020-10-06Add --preview-window option for cyclic scrollingJunegunn Choi
Close #2182
2020-10-05Add preview-half-page-down and preview-half-page-up (#2145)Tinmarino
2020-10-05Show how to use reload actionJunegunn Choi
2020-10-03[zsh] Keep current $BUFFER on ALT-CJunegunn Choi
Ideally, we could only use `print -sr` to update the command history. However, the "cd" command by ALT-C is added to the history only after we finalize the current command by pressing an additional enter key. i.e. The cd command from ALT-C is not visible when you hit Up arrow. But it appears once you hit enter key. So when the current buffer is empty, we use `zle accept-line` so that the command history is immediately updated. Close #2200
2020-10-02[zsh] Record cd execution in history (#2193)octaltree
2020-09-29Remove deprecated item from man pageJunegunn Choi
2020-09-29Always allow preview/execute commands with no placeholder expressionsJunegunn Choi
Fix #2017
2020-09-24Fix items width limit (#2190)Wenxuan
2020-09-12[vim] Change the default layout to use popup windowJunegunn Choi
The new default is { 'window' : { 'width': 0.9, 'height': 0.6, 'highlight': 'Normal' } } The default highlight group for the border of the popup window is 'Comment', but 'Normal' seems to be a safer choice. If you prefer the previous default, add this to your Vim configuration file: let g:fzf_layout = { 'down': '40%' } (fzf will fall back to this if popup window is not supported)
2020-09-09Update CHANGELOGJunegunn Choi
2020-09-09[vim] Expose fzf#exec() functionJunegunn Choi
2020-09-06[vim] Allow specifying popup width and height in absolute integer valueJunegunn Choi
Fix https://github.com/junegunn/fzf.vim/issues/1116
2020-09-02[zsh] Fix the regular expression (#2140)Yuji Nakao
Fix the regular expression to capture the command containing asterisk.
2020-09-02Add truecolor support for Windows, if available (#2156)Michael Kelley
- Update to latest tcell which has 24 bit Windows support - light renderer under Windows defaults to Dark256, if possible - Respect TCELL_TRUECOLOR - Remove tcell 1.3 references
2020-08-23Revert horizontal padding around preview window on "noborder"Junegunn Choi
Use 2-space horizontal padding so that the preview content is aligned with the candidate list when the position of the preview window is `up` or `down`.
2020-08-23Revert 1ab4289: Preview window of size 0 is allowedJunegunn Choi
2020-08-23Add more preview window options and reduce vertical padding on noborderJunegunn Choi
Fix #2138 Fix #2029
2020-08-23Support preview scroll offset relative to window heightJunegunn Choi
Related: https://github.com/junegunn/fzf.vim/issues/1092
2020-08-21Disallow preview-window size of zeroJunegunn Choi
2020-08-020.22.00.22.0Junegunn Choi
2020-08-02Ignore punctuation characters before and after preview offset columnJunegunn Choi
This is to allow line numbers in a ctags output (e.g. 123;")
2020-07-28Smart match of accented charactersJunegunn Choi
Fix #1618
2020-07-28Fix handling of unicode characters in query stringJunegunn Choi
2020-07-27Fix Travis CI build: Use Go 1.14Junegunn Choi
2020-07-27Allow negative field index in preview-window scroll offsetJunegunn Choi
2020-07-27Add preview window option for setting the initial scroll offsetJunegunn Choi
Close #1057 Close #2120 # Initial scroll offset is set to the line number of each line of # git grep output *minus* 5 lines git grep --line-number '' | fzf --delimiter : --preview 'nl {1}' --preview-window +{2}-5
2020-07-26Fix failure of w:fzf_pushd unlet depending on timing (#2119)yuki yano
2020-07-15[vim] Preserve current directory in case someone changes it (#2096)Yanlin Sun
Preserve current directory in case current directory is changed by others after the call of s:open Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2020-07-05Support ANSI colors in --prompt stringJunegunn Choi
Close #2086
2020-07-05README: Correct Nix distro support (#2051)Atemu
Nix can be installed on (almost) any Linux distro and on macOS. See https://nixos.org/nix/ for more information.
2020-07-03Void Linux installation instructions (#2100)anntnzrb
2020-07-03Ignore cursor position reportJunegunn Choi
Close #2081
2020-07-03Use rune characters instaed of numbers in codeJunegunn Choi
2020-06-30Update CHANGELOGJunegunn Choi
2020-06-29[vim] Disable height calculation when 'preview' is found in the option stringJunegunn Choi
Fix #2093 And we'll phase out height specification with `~` prefix.
2020-06-29Update version numbers in man pagesJunegunn 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-21[nvim] Fix floating window requirements (#2089)Jan Edmund Lazo
Vim 8.1.2371 https://github.com/vim/vim/commit/05ad5ff0ab34ed9a5296dedd420ca81698b8ce22 Nvim 0.4.0 https://github.com/neovim/neovim/commit/9a1675b065394734ddaef91a314896028e2b1d46
2020-06-20[vim] Make fzf#wrap support v:true and v:false as wellJunegunn Choi
Fix #2087
2020-06-20Add refresh-preview actionJunegunn Choi
2020-06-07Add backward-eof event for --bindJunegunn Choi
2020-06-07Fully qualify Expand-Archive (#2066)Ben
If a user has the Powershell Community Extensions installed, it comes with another command Expand-Archive that doesn't have a DestinationPath argument, causing an error.
2020-06-04README: Use --line-range instead of head in bat example (#2064)Janek
* Use --line-range instead of head in bat example * README: extend preview section
2020-05-23Revert file mode of key-bindings.zshJunegunn Choi
2020-05-23[fzf-tmux] Fix zoomed pane handling in popup mode (#2054)karasu
When called with popup options, do not move to temp window.
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.