summaryrefslogtreecommitdiffstats
path: root/README-VIM.md
AgeCommit message (Collapse)Author
2021-06-04[vim] Add 'sinklist' as a synonym to 'sink*'Junegunn Choi
So that it's easier to add a sinklist function to a spec dictionary. let spec = { 'source': source, 'options': ['--preview', preview] } function spec.sinklist(matches) echom string(a:matches) endfunction call fzf#run(fzf#wrap(spec))
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-02-03[vim] fzf#run should ignore empty 'dir' argumentJunegunn Choi
Fix #2343
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-10-29[vim] Allow 'border': 'no' to be consistent with --color=noJunegunn Choi
2020-10-270.24.00.24.0Junegunn Choi
2020-10-26[vim] Add 'none' option for popup borderJunegunn Choi
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-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-04-05Fix typoJunegunn Choi
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-03-11Add explanation for the `g:fzf_colors` setting (#1878)Kahlil (Kal) Hodgson
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2020-02-14[vim] Add fzf#install() for downloading fzf binaryJunegunn Choi
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-10Fix documentationJunegunn Choi
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.
2020-01-22Update Neovim floating window example to have borderJunegunn Choi
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-09-07[vim] Update README-VIM: fzf can run inside GVimJunegunn Choi
2017-09-06Update g:fzf_colors exampleJunegunn Choi
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 example in README-VIMJunegunn Choi
2017-04-01Add vim docJunegunn Choi
Close #893