Results 15 comments of imbant

Hi, I'm a language server developer. I am very curious about how to implement the Import-on-Paste function you mentioned above? Here is my idea, is it feasible? (sorry but reading...

Hi Mike! I developed my own language server by referring to your [VS Code extension](https://marketplace.visualstudio.com/items?itemName=mike-lischke.vscode-antlr4). It is an independent process written in Node.js, integrated into a VS Code extension and...

Sadly it's not open source (copyright belongs to my employer). It's VS Marketplace page is [here](https://marketplace.visualstudio.com/items?itemName=craftLandstudio.ffugclanguage). However, I can decouple the business logic from my extension and publish a template...

I’ll give it a try when I have some time...

I did this to avoid wrapping: ```diff function Report(...data) { -- scope.info(data) ++ scope.info(...data) } ```