rox
rox
> it's not really a bad thing as it can be modified on the fly. Yeah. But current PR adds overhead to new users, because they may need to add...
> Although since the introduction of RPC, we could equally delegate the call to the Phpactor VIM plugin: The whole point of the existance of this plugin is for async...
I understand. But I still don't like current behavior of `g:phpactorInitialCwd`. I think current behavior is better than that. I'll keep this open, wait for more comments and see how...
> [LC] Error: Failure { jsonrpc: Some(V2), error: Error { code: MethodNotFound, message: "Unhandled method textDocument/completion", data: None }, id: Num(3) } I think you should post log file defined...
https://stackoverflow.com/questions/32612235/what-is-os-name-on-cygwin Looks like `os.name` yields `posix` on cygwin, I'm not sure it's going to work
Fair point. This plugin currently supports `neovim_rpc#jobstart`, using stdin, stdout for the channel. Looks like unix domain socket is a better option, as the `v:servername` on neovim. It seems named...
The commit https://github.com/roxma/vim-hug-neovim-rpc/commit/5a20db1f06a4b1bba5015881ffe218678d7ec085 enables unix socke based rpc server. It seems it doesn't boost the time performance except for the security improvement. Unfortunately there's still an internal vim server which...
- stdio has bad performance on Windows - It would be impossible for a plugin to create threads which hold its own RPC connection. NCM uses multithreading. I think it's...
By the way, there're two servers in this plugin. Read https://github.com/roxma/vim-hug-neovim-rpc#overall-implementation The VIM server, which talks to vim8 using vim8's RPC. It's running in the same process as vim, so...
Hi, This plugin applies to `info` field of completion item. You could try sending a PR to https://github.com/SirVer/ultisnips/blame/master/rplugin/python3/deoplete/sources/ultisnips.py to add the `info` field. `:help complete-items` // cc @Shougo