The Unite.vim file_rec / async command is not executable.

I use gVim with Vundle on Windows XP and 7. I have Unite.vim installed and I'm trying to use the file_rec / async command to search for files. I installed Vimproc.vim by running the following commands:

cd .vim\bundle\vimproc.vim make -f make_mingw32.mak 

When I open gVim and enter the following in command mode:

 :Unite file_rec/async 

I get the following error:

 [file_rec/async] async command : "" is not executable. 
+4
source share
1 answer

I am the author of unite.vim.

On Windows, you should not use the file_rec / async source. It is too slow and not easy to use. Instead, you should use the file_rec source.

+9
source

Source: https://habr.com/ru/post/1498071/


All Articles