| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-07-02 | Update copyright year | Junegunn Choi | |
| 2025-05-04 | [vim] Update g:fzf_colors example with 'query' | Junegunn Choi | |
| 2024-08-19 | [vim] Add 'exit' callback | Junegunn Choi | |
| A spec can have `exit` callback that is called with the exit status of fzf. This can be used to clean up temporary resources or restore the original state when fzf is closed without a selection. | |||
| 2024-05-18 | [vim] Use native --tmux option instead of fzf-tmux when possible | Junegunn Choi | |
| 2024-02-15 | Replace "default find command" with built-in directory traversal | Junegunn Choi | |
| 2024-01-01 | 0.45.0 | Junegunn Choi | |
| 2023-08-12 | doc: Add different prefix for Homebrew on Apple Silicon (#3396) | Nikita Kouevda | |
| Follow-up to d42e708d3140aab099b30014a9cbebafb8b66692. Fixes #3095. | |||
| 2023-03-20 | [vim] More explanation on 'set rtp+=~/.fzf' instruction | Junegunn Choi | |
| Close #3171 | |||
| 2023-03-10 | [vim] Update setqflist example | Junegunn Choi | |
| Without 'lnum', cfdo doesn't work Close https://github.com/junegunn/fzf.vim/issues/1435 | |||
| 2023-01-17 | 0.36.0 | Junegunn Choi | |
| 2023-01-16 | [vim] Use system-default border style | Junegunn Choi | |
| * 'rounded' on non-Windows platforms * 'sharp' on Windows | |||
| 2022-12-26 | Update README-VIM: Different homebrew prefix on Apple Silicon | Junegunn Choi | |
| Close #3095 | |||
| 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-VIM | Junegunn 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' argument | Junegunn Choi | |
| Fix #2343 | |||
| 2021-01-03 | 0.25.0 | Junegunn Choi | |
| 2021-01-03 | Make search toggleable | Junegunn 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-31 | Update vimdoc | Junegunn Choi | |
| 2020-10-29 | [vim] Allow 'border': 'no' to be consistent with --color=no | Junegunn Choi | |
| 2020-10-27 | 0.24.0 | Junegunn Choi | |
| 2020-10-26 | [vim] Add 'none' option for popup border | Junegunn Choi | |
| 2020-10-18 | README-VIM: g:fzf_action doesn't work with custom sink | Junegunn Choi | |
| Fix https://github.com/junegunn/fzf.vim/issues/1131 | |||
| 2020-09-12 | [vim] Change the default layout to use popup window | Junegunn 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 value | Junegunn Choi | |
| Fix https://github.com/junegunn/fzf.vim/issues/1116 | |||
| 2020-06-29 | [vim] Disable height calculation when 'preview' is found in the option string | Junegunn Choi | |
| Fix #2093 And we'll phase out height specification with `~` prefix. | |||
| 2020-04-05 | Fix typo | Junegunn Choi | |
| 2020-04-05 | [vim] Add 'tmux' layout option to use fzf-tmux | Junegunn 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-11 | Add 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 binary | Junegunn Choi | |
| 2020-02-14 | [vim] More border styles | Junegunn 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-10 | Fix documentation | Junegunn 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 popup | Junegunn Choi | |
| Close https://github.com/junegunn/fzf.vim/issues/942 | |||
| 2020-02-04 | [vim] Popup window support for both Vim and Neovim | Junegunn 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-25 | Update copyright year (#1832) | Shun Sakai | |
| Update copyright year to 2020 and change to multi-year format. | |||
| 2020-01-22 | Update Neovim floating window example to have border | Junegunn Choi | |
| 2019-11-29 | Update README-VIM | Junegunn Choi | |
| 2019-11-23 | Revamp README-VIM.md | Junegunn Choi | |
| 2019-06-08 | Fix invalid layout example | Junegunn Choi | |
| 2019-06-08 | Remove outdated GVim instruction | Junegunn Choi | |
| The section is no longer relevant since (G)Vim 8 or above has builtin terminal emulator. | |||
| 2019-06-08 | Add fzf#run tutorial to README-VIM.md | Junegunn 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 appropriate | Junegunn Choi | |
| Close #1055 | |||
| 2017-09-07 | [vim] Update README-VIM: fzf can run inside GVim | Junegunn Choi | |
| 2017-09-06 | Update g:fzf_colors example | Junegunn Choi | |
| 2017-08-14 | [vim] Allow Funcref in g:fzf_action | Junegunn Choi | |
| https://github.com/junegunn/fzf.vim/issues/185 | |||
| 2017-04-28 | Update README-VIM: options as list (#896) | Junegunn Choi | |
| 2017-04-01 | Update example in README-VIM | Junegunn Choi | |
| 2017-04-01 | Add vim doc | Junegunn Choi | |
| Close #893 | |||
