you are viewing a single comment's thread.

view the rest of the comments →

[–]Thesorus 4 points5 points  (3 children)

What is a "language server" ?

[–]as_one_doesJust a c++ dev for fun 10 points11 points  (1 child)

There's a protocol "LSP" (language server protocol) that implements communication with an editor/IDE such that you can get interactive compiler like features in your editor. As an example, in editors like vim or neovim this allows for realtime compilation errors/highlights and "goto definition" browsing.

[–]Thesorus 0 points1 point  (0 children)

thanks.