-
Notifications
You must be signed in to change notification settings - Fork 22
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
Ack command does not work on Windows 10 for Neovim #60
Comments
I don't have a Windows development machine but if anybody does and cares to look into this a PR would be welcome. |
I also get the same error on nvim on archlinux. Neovim version is 0.3.8 |
It appears that this happens if a search is already running, and the cancel function is called |
specifically the |
Seeing the same error message, using nvim 0.3.8 on windows 10. rg is installed so I assume it's using that. |
Nevermind, |
I got this issue to go away by not specifying the ferret executable in my vimrc |
When using neovim on windows, I also experienced the ferret ack command not working as it does on unix. Interestingly, it does work fine using vim on both operating systems. In order to get it to work using neovim on windows I had to set both the variables @loshjawrence mentioned above ( let g:is_win = has('win32') || has('win64')
let g:is_nvim = has('nvim')
if g:is_win && g:is_nvim
let g:FerretNvim = 0
let g:FerretJob = 0
endif Tested using the following:
|
I had same problem with I don't know if it a proper solution (I'm really bad in vimscript), but if so, I can make a PR. |
This happens on MacOS Catalina 10.15.7, nvim 0.4.4, python 3.9.5. And the suggested solutions do not work :( |
@mhoonjeon there is another issue with a similar symptom caused by an upgrade of rg #78 maybe some of the workarounds can help. |
I installed the latest version of ferret both on Linux and my Windows machine with Neovim. On Linux, it works as expected. But on Windows, the command
Ack
simply does not work.Version info
steps to reproduce
init.vim
Open neovim with the following command:
:Ack some_string
to search string under the current folder. Nothing happens. If I run the search command again, the following error is produced::Back some_string
. It works without any error.The text was updated successfully, but these errors were encountered: