M Ramdhan
M Ramdhan
same issue
i solved this issue by doing this commands ``` $ python3 -m pip install pynvim ``` and run `:UpdateRemotePlugins` inside neovim
Why breaks neovim?, I'm using neovim, and it's works fine. We can using `find` with exclude options or `git ls-files` instead of `ripgrep`. ripgrep works on windows too. Thanks for...
Check/Test the latest commit, i don't know if `let l:cmd = ['cmd', '/c', join(a:cmd)]` worked or not
In vim that's doesn't work, i tried this. For example `:call job_start('echo hello > /tmp/b')` this command doesn't work. But this command work for me `:call job_start(["/bin/sh", "-c", "echo hello...
`:call job_start(["echo", "hello", ">", "/tmp/c"])` this command doesn't work too in vim.
Don't know if job_start works using pipe `|`. This command doesn't work for me `:call job_start(["echo", "hello", "|", "nc", "localhost" , "8080"])`. It's work using `:call job_start(["/bin/sh", "-c", "echo hello...
yea, it's works in vim using `system` command. Above snippet doesn't work for me if i remove `system` line. It's should works in vim using job_start (without system command). Can...
How do you got that error ?
I don't want remove `g:gen_tags#find_tool`. But if user not setting `gen_tags#find_tool` then gen_tags will detect existing command (like `ag`, `rg`) and set `g:gen_tags#find_tool` automatically. What do you think?