summaryrefslogtreecommitdiffstats
path: root/doc
AgeCommit message (Collapse)Author
2021-05-19[vim] Update README-VIMJunegunn Choi
2021-04-17[vim] Support relative-to-window positioning of popup (#2443)Tom Picton
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2021-01-030.25.00.25.0Junegunn Choi
2021-01-03Make search toggleableJunegunn Choi
- `--phony` renamed to `--disabled` for consistency - `--no-phony` is now `--enabled` - Added `enable-search`, `disable-search`, and `toggle-search` actions for `--bind` - Added `--color` options: `query` and `disabled` Close #2303
2020-12-31Update vimdocJunegunn Choi
2020-12-31Add tag links for "doc/fzf.txt"yhu266
2020-10-18README-VIM: g:fzf_action doesn't work with custom sinkJunegunn Choi
Fix https://github.com/junegunn/fzf.vim/issues/1131
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-06[vim] Allow specifying popup width and height in absolute integer valueJunegunn Choi
Fix https://github.com/junegunn/fzf.vim/issues/1116
2020-04-05[vim] Add 'tmux' layout option to use fzf-tmuxJunegunn Choi
e.g. if exists('$TMUX') let g:fzf_layout = { 'tmux': '-p90%,60%' } else let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } } endif
2020-02-14[vim] More border stylesJunegunn Choi
e.g. let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 0, 'border': 'right' } } let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 1, 'border': 'left' } } let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 1, 'border': 'top' } } let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 0, 'border': 'bottom' } }
2020-02-06[vim] Border style for popup window (rounded | sharp | horizontal)Junegunn Choi
2020-02-06[vim] Add support for xoffset and yoffset options for popupJunegunn Choi
Close https://github.com/junegunn/fzf.vim/issues/942
2020-02-04[vim] Popup window support for both Vim and NeovimJunegunn Choi
e.g. let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } } Based on the code from https://github.com/junegunn/fzf.vim/issues/821#issuecomment-581273191 by @lacygoill.
2020-01-25Update copyright year (#1832)Shun Sakai
Update copyright year to 2020 and change to multi-year format.
2019-11-29Update README-VIMJunegunn Choi
2019-11-23Revamp README-VIM.mdJunegunn Choi
2019-06-08Fix invalid layout exampleJunegunn Choi
2019-06-08Remove outdated GVim instructionJunegunn Choi
The section is no longer relevant since (G)Vim 8 or above has builtin terminal emulator.
2019-06-08Add fzf#run tutorial to README-VIM.mdJunegunn Choi
2017-11-19[vim] Add instruction to hide statusline of terminal buffer (#1143)Junegunn Choi
2017-09-29[vim] Use Vim 8 terminal when appropriateJunegunn Choi
Close #1055
2017-08-14[vim] Allow Funcref in g:fzf_actionJunegunn Choi
https://github.com/junegunn/fzf.vim/issues/185
2017-04-28Update README-VIM: options as list (#896)Junegunn Choi
2017-04-01Update doc/fzf.txt accordinglyJunegunn Choi
2017-04-01Add vim docJunegunn Choi
Close #893