RaffaelCH / GrandFileNavigator

Grand File Navigator VS Code Plugin
0 stars 0 forks source link

Review benefits of Language Server Extension #5

Open raul-m opened 2 weeks ago

raul-m commented 2 weeks ago

Two approaches for implementing Language Features:

  1. Direct API Implementation via vscode.languages.* to directly implement features like hover, code completion, and diagnostics.
  2. Language Server Protocol (LSP) allows implementation of language features in any language, decoupling the language analysis logic from the editor, enabling reuse across different editors.