-
-
Notifications
You must be signed in to change notification settings - Fork 584
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Soft kill terminal buffer #539
Comments
You are probably running into this: BurntSushi/ripgrep#200 |
I can't find a way to reproduce this issue just using rg. |
I missed the screencast you posted above, and it's clear that it's not related to the issue. |
Have you tried googling |
@junegunn : Somehow it's in process of a bat file, terminate it will cause that message. Did fzf wrap rg command in bat file? |
Yes, we always do that. Does the prompt only appear with |
Can you name a command that does the same like |
I can't reproduce the problem ( >rg --version
ripgrep 0.7.1
-AVX -SIMD gvim.exe -u minimal_vimrc.vim --cmd "set nocp | set rtp+=~/.fzf rtp+=~/vimfiles/bundle/fzf.vim | runtime! plugin/fzf.vim" |
Can you give more details about where to pass |
fzf runs the command in a batchfile regardless of the user's shell so single-quote escaping won't work. On top of that, the right way to call cmd.exe to minimize edge cases with double quote is
Check |
Thanks, but I don't understand much. Can you create a PR or make some changes in files that need to fix this issue so that users can use in their own with risk of interfere with other plugins? |
The documentation and rationale for the Windows-specific escaping (and I could create PRs to update documentation on all three repos but this is not a high-priority for me right now. |
fzf 0.17.1, lastest fzf.vim, gvim8 1-1358, windows 10, +terminal
Video demo.
Minimal vimrc:
Produce steps:
gvim.exe --cmd "set nocp | set rtp+=~/vimfiles/pack/plugins/start/fzf | runtime! plugin/fzf.vim"
:FZF
, try to kill terminal buffer with<C-c>
--> reuslt buffer killed.:Find
command (i.e:Find abc
). After type:Find abc
command, try to kill terminal buffer --> result buffer can't be killed.So the expected result is that terminal buffer can be killed using
<C-c>
The text was updated successfully, but these errors were encountered: