summaryrefslogtreecommitdiff
path: root/plugin
AgeCommit message (Collapse)Author
2018-08-20[vim] Fix directory switching around sink functionJunegunn Choi
Close #1356 Related: - #612 - https://github.com/junegunn/fzf.vim/issues/308
2018-08-10[vim] Clear temporary window-local working directoryJunegunn Choi
Close #1085 Close #1086 Close https://github.com/junegunn/fzf.vim/issues/678
2018-05-13[vim] Use CRLF in batchfile for multibyte codepage (#1289)Jan Edmund Lazo
Close #1288
2018-04-26[vim] Ignore Vim:Interrupt when "Abort" selected on E325Junegunn Choi
Close #1268
2018-01-26[vim] Make list options compatible with layout optionsJunegunn Choi
Fix #1205
2017-12-05[vim] Fix terminal buffer cleanup on Vim 8Junegunn Choi
Close #1172
2017-12-03[vim] Remove unnecessary term_wait workaroundJunegunn Choi
The issue is fixed in https://github.com/vim/vim/commit/1232624ae5b56c167c5982a2620f736c4bbc19ef
2017-11-22[vim] Don't use :terminal on msys2 or Cygwin (#1155)Jan Edmund Lazo
Close #1152 msys2 terminal Vim assumes that it runs in mintty so `:terminal` uses `TERM=xterm`. fzf doesn't support `TERM=xterm` on Windows.
2017-09-30[neovim] Fix Neovim plugin to use terminal instead of --heightJunegunn Choi
Close #1066 Close #1068
2017-09-29[vim] Use Vim 8 terminal when appropriateJunegunn Choi
Close #1055
2017-09-07[vim] Do not pathshorten prompt in cygwin (#1043)Jan Edmund Lazo
Prevents the following case: before pathshorten - /usr/bin after pathshorten - /u/bin piped to cmd.exe - U:/bin
2017-09-07[vim] Update FZF command not set up lengthy prompt on narrow screenJunegunn Choi
Port of https://github.com/junegunn/fzf.vim/commit/e7928d154aad71e530daf5c17733275da5732680 Since :FZF does not enable preview window, we determine based on full &columns instead of &columns / 2.
2017-09-05[vim] Bind Ctrl-J in Vim terminal to fix enter keyJan Edmund Lazo
Temporary workaround for non-Windows environment Reference: https://github.com/vim/vim/issues/1998 https://github.com/junegunn/fzf/pull/1019#issuecomment-327008348
2017-09-05[vim] Use s:execute_term in WindowsJan Edmund Lazo
IMPORTANT: cmd.exe and powershell are fine in default Windows terminal. cmd.exe prompt is broken on ConEmu because it natively supports ucs-2 only. utf-16 support is exclusive to .Net (ie. powershell). utf-8 supports requires chcp, external program, but does not fix the cmd.exe prompt. Use powershell on ConEmu to avoid corrupted text on display
2017-09-05[vim] s:execute_term works in GVim on WindowsJan Edmund Lazo
Requirements: - compiled with +terminal - has patch-8.0.995 - has('gui_running') returns 1
2017-09-05[neovim] use batchfile for s:execute_term in WindowsJan Edmund Lazo
2017-09-05[neovim] Fix terminal buffer marker on WindowsMichael Smith
Original Patch: https://github.com/junegunn/fzf/commit/a9bf29b65ec36d9caa7298aad0322fba8cb3e130
2017-09-05[neovim] use terminal in Windows for v0.2.1+Jan Edmund Lazo
2017-08-30[neovim] Set &shell to sh (again) after opening a new windowJunegunn Choi
Close #1031
2017-08-28[vim] Add parens around piped source commands (#1029)Jack O'Connor
Previously a command like `echo a && echo b` would get transformed into `echo a && echo b | fzf`, which only pipes the output of the second command. Adding parentheses around the source command avoids this issue, and works on both Unix and Windows.
2017-08-26[neovim] Allow running FZF in multiple windowsJunegunn Choi
Close #1023
2017-08-20[vim] Escape backslashes in fzf#shellescape (#1021)Jan Edmund Lazo
2017-08-14[vim] Allow Funcref in g:fzf_actionJunegunn Choi
https://github.com/junegunn/fzf.vim/issues/185
2017-08-09[vim] Fix issues with other plugins changing working directoryJunegunn Choi
Close #1005
2017-07-30[vim] Fix escape of backslash in s:shortpathJan Edmund Lazo
Close #1000
2017-07-23[nvim] Disable number in fzf bufferJunegunn Choi
https://github.com/junegunn/fzf.vim/issues/396#issuecomment-317214036 One can override the setting on FileType fzf autocmd.
2017-07-18[vim] Use fnameescape to escape command line argumentsJunegunn Choi
Fix https://github.com/junegunn/fzf.vim/issues/404 Thanks to @janlazo.
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 pathsJunegunn 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 CygwinJunegunn Choi
2017-05-31[vim] Replace invalid s:escape calls with fzf#shellescapeJunegunn Choi
2017-05-31[vim] Make sure to delete temporary batchfile on WindowsJunegunn Choi
2017-05-31[vim] Remove unnecessary ternary expressionJunegunn 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_goJunegunn 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-30Export FZF_PREVIEW_HEIGHT instead of FZF_HEIGHTJunegunn Choi
https://github.com/junegunn/fzf.vim/issues/361
2017-04-30[vim] Export $FZF_HEIGHT for previewer scriptsJunegunn 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-27fzf#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 messagesJunegunn Choi
2017-03-02[vim] Throw error if g:fzf_layout is incorrectly usedJunegunn 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 direcotryJunegunn Choi
Close https://github.com/junegunn/fzf.vim/issues/308
2017-02-19[vim] Minor refactoringJunegunn Choi
2017-02-19[vim] Escape ! when using :! to execute commandJunegunn 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 WindowsJunegunn Choi
Close #847. Patch submitted by @wontoncc.