| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-07-10 | [neovim] Fix lcd when fzf job exits on Windows (#970) | Jan Edmund Lazo | |
| Related: #960 (relative filepaths) | |||
| 2017-07-09 | [vim] Don't pipe FZF_DEFAULT_COMMAND in Windows (#969) | Jan Edmund Lazo | |
| Related #960, #552 | |||
| 2017-06-09 | [vim] Expand 'dir' on Cygwin to handle Windows-style paths | Junegunn Choi | |
| See https://github.com/junegunn/fzf/pull/933#discussion_r120011934 Close https://github.com/junegunn/fzf.vim/pull/386 | |||
| 2017-06-05 | [vim] Add support for Cygwin (#933) | Jan Edmund Lazo | |
| 2017-06-04 | [vim] Allow running install --bin on Cygwin | Junegunn Choi | |
| 2017-05-31 | [vim] Replace invalid s:escape calls with fzf#shellescape | Junegunn Choi | |
| 2017-05-31 | [vim] Make sure to delete temporary batchfile on Windows | Junegunn Choi | |
| 2017-05-31 | [vim] Remove unnecessary ternary expression | Junegunn Choi | |
| Related: https://github.com/junegunn/fzf.vim/issues/378 | |||
| 2017-05-31 | [vim] Use utf-8 for cmd.exe (#929) | Jan Edmund Lazo | |
| 2017-05-29 | [vim] Replace s:fzf_shellescape and s:shellesc with fzf#shellescape (#916) | Jan Edmund Lazo | |
| 2017-05-22 | [vim] Prevent 'wildignore' from affecting expand() (#917) | Junegunn Choi | |
| 2017-05-22 | [vim] Do not expand s:fzf_go | Junegunn Choi | |
| expand() may return an empty string depending on the value of &wildignore. Since expand('<sfile>') always returns an absolute path, we can remove expand() call here. Close #917. | |||
| 2017-04-30 | Export FZF_PREVIEW_HEIGHT instead of FZF_HEIGHT | Junegunn Choi | |
| https://github.com/junegunn/fzf.vim/issues/361 | |||
| 2017-04-30 | [vim] Export $FZF_HEIGHT for previewer scripts | Junegunn Choi | |
| Preview script cannot properly determine the height of fzf finder if `--height` option is used. https://github.com/junegunn/fzf.vim/issues/361 | |||
| 2017-04-22 | [vim] Use backslash for Windows filepaths (#896) | Jan Edmund Lazo | |
| - Fix shellescaping issues for filepaths - Supports both forward slashes or backslashes - Paths with spaces - Use jobstart for neovim in s:execute (Windows) - https://github.com/neovim/neovim/pull/6497 - Make 2 s:fzf_shellescape functions - (Windows) Substitute \" with \\" to escape the last backslash - (Default) Regular shellescape - Support list 'options' - Add "@echo off" to the batchfile used to execute fzf | |||
| 2017-03-27 | fzf#run: improve "is already running" message (#885) | Daniel Hahler | |
| This displays the buffer(s) in this case, which is useful when FZF got stuck, and you have to manually remove the buffer. | |||
| 2017-03-02 | [vim] Capitalize exception messages | Junegunn Choi | |
| 2017-03-02 | [vim] Throw error if g:fzf_layout is incorrectly used | Junegunn Choi | |
| https://github.com/junegunn/fzf.vim/issues/327 https://github.com/junegunn/fzf.vim/issues/317 | |||
| 2017-02-25 | [neovim] Set 'dir' to the current direcotry | Junegunn Choi | |
| Close https://github.com/junegunn/fzf.vim/issues/308 | |||
| 2017-02-19 | [vim] Minor refactoring | Junegunn Choi | |
| 2017-02-19 | [vim] Escape ! when using :! to execute command | Junegunn Choi | |
| - call fzf#run({'source': "echo '!'"}) - call fzf#run({'source': "echo '!'", 'down': '40%'}) Close https://github.com/junegunn/fzf.vim/issues/315 | |||
| 2017-02-18 | [vim] Prepend @echo off to $FZF_DEFAULT_COMMAND on Windows (#847) | Junegunn Choi | |
| 2017-02-18 | [vim] Fix FZF_DEFAULT_COMMAND on Windows | Junegunn Choi | |
| Close #847. Patch submitted by @wontoncc. | |||
| 2017-02-17 | [vim] Do not escape % when using system() instead of ! | Junegunn Choi | |
| Close https://github.com/junegunn/fzf.vim/issues/309 | |||
| 2017-02-07 | Use "type" instead of "cat" on windows (#836) | Prabir Shrestha | |
| 2017-02-05 | [vim] Download instruction for Windows | Junegunn Choi | |
| 2017-02-04 | [vim] Apply --no-height when running fzf in full screen mode | Junegunn Choi | |
| To override --height option in FZF_DEFAULT_OPTS | |||
| 2017-02-01 | [vim] Expose buffer variable with the current fzf setup (#828) | Kassio Borges | |
| Exposing the `b:fzf` variable will be useful to get information about which command is being executed on the current fzf window. With that, now, it's possible to use the current command name on the statusline: ```viml au User FzfStatusLine call <SID>fzf_statusline() function! s:fzf_statusline() let fzf_cmd_name = get(b:fzf, 'name', 'FZF') let &l:statusline = '> '.fzf_cmd_name endfunction ``` | |||
| 2017-01-30 | [vim] g:fzf_prefer_tmux for choosing fzf-tmux over --height | Junegunn Choi | |
| https://github.com/junegunn/fzf.vim/issues/296 | |||
| 2017-01-22 | [vim] Use 24-bit colors if termguicolors is set | Junegunn Choi | |
| 2017-01-22 | Clear lines even when background color is not set | Junegunn Choi | |
| Also revert the workaround in Vim plugin introduced in fa7c897. Related: #814 | |||
| 2017-01-22 | [vim] tput el to clear the last line | Junegunn Choi | |
| Close #814 Not grouping commands to avoid errors on non-standard shells. | |||
| 2017-01-16 | Merge pull request #794 from junegunn/devel | Junegunn Choi | |
| 0.16.0 | |||
| 2017-01-15 | [vim] Use /dev/tty as STDIN when using --height w/o explicit source | Junegunn Choi | |
| 2017-01-14 | s:common_sink(): Avoid duplicate BufEnter. (#803) | Justin M. Keyes | |
| Later versions of Vim/Nvim handle `:edit <dir>` inside try-catch. https://github.com/vim/vim/commit/e13b9afe1283f5ae43232b5992372a0eb570666c https://github.com/vim/vim/pull/1375 | |||
| 2017-01-08 | [vim] Use --height instead of fzf-tmux | Junegunn Choi | |
| 2017-01-08 | Add --height option | Junegunn Choi | |
| 2017-01-04 | [vim] Use cmd.exe directly on GVim (launcher='%s') (#787) | Jan Edmund Lazo | |
| 2017-01-02 | [vim] FZF command to handle Windows paths with spaces | Jan Edmund Lazo | |
| - Use noshellslash for strict path expansion in fzf#run and s:cmd (shellescape depends on shellslash) - Double-quote the fzf command for cmd.exe - Add fzf#shellescape to encapsulate the logic - Close #786 | |||
| 2017-01-01 | [vim] Use cmd.exe in Windows (#785) | Jan Edmund Lazo | |
| 2016-12-19 | s:execute_term: switch_back: check that self.pbuf exists (#776) | Daniel Hahler | |
| With a `bufhidden=wipe` buffer (e.g. vim-startify) the buffer would not exist anymore, resulting in an error. | |||
| 2016-12-14 | Neovim: event handlers always expect three arguments (#768) | Marco Hinz | |
| 2016-12-11 | [neovim] Keep alternate file unchanged | Junegunn Choi | |
| Close https://github.com/junegunn/fzf.vim/issues/265 | |||
| 2016-12-03 | [vim] Fix path display in FZF when cwd is ~ | Junegunn Choi | |
| 2016-12-02 | [vim] Display relative path in prompt | Junegunn Choi | |
| 2016-10-22 | [vim] Respect g:fzf_colors | Junegunn Choi | |
| Close #711 | |||
| 2016-10-18 | [vim] Set g:loaded_fzf | Junegunn Choi | |
| 2016-10-12 | [fzf-tmux/vim/nvim] Do not split small window | Junegunn Choi | |
| Close #699 | |||
| 2016-10-04 | [vim] Apply --multi and --prompt to :FZF command | Junegunn Choi | |
| 2016-08-28 | [neovim] Do not resize if the size of the screen has changed | Junegunn Choi | |
| Related #642 | |||
