eirikpre / VSCode-SystemVerilog

SystemVerilog support in VS Code
MIT License
128 stars 50 forks source link

Could this plugin be used with coc.nvim? #71

Open antoinemadec opened 4 years ago

antoinemadec commented 4 years ago

I've been using your plugin in VSCode and I like a lot! I was wondering if it would be doable to port it to coc.nvim?

coc.nvim supports LSP servers: https://github.com/neoclide/coc.nvim/wiki/Language-servers

Thanks in advance, Antoine

eirikpre commented 4 years ago

In the future, yes :)

Most of the features are currently provided by the client, using regular expressions to parse the code.

The idea in the future is to move everything over to the LSP with a more powerful parser, but current state of affairs is that it is in development: #68

You can use the LSP now, but it wont provide much.

antoinemadec commented 4 years ago

@eirikpre I will keep an eye on this :smiley: Could you please let me know how to compile the LSP server, just to give it a try?

For now, I will keep on using the universal Ctags, but this really is exiting news!