Hacker News new | ask | show | jobs
by joelbluminator 2102 days ago
> However, recently I started a project with Ruby, thanks to language servers

What do u mean exactly?

1 comments

Language servers provide generic autocomplete and other language-specific functionality (e.g. rename a method, find all references to a symbol within your project, find where a symbol is defined, etc) to any editor that supports them. The reference implementation is VSCode, so if you use VSCode you can definitely use language servers, but now that’s it’s picking up steam, support is getting added to other editors, e.g. see vim-coc.

The Ruby language server in question: https://solargraph.org/

Interesting. Do u know what Rubymine is using ? it's own in-house solution?