Parcourir la source

Documentation: Update Helix editor documentation

Helix 23.10 made breaking changes to the way lsp configuration works, so
update documentation to reflect the new structure.
Valtteri Koskivuori il y a 1 an
Parent
commit
427ca284f1
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      Documentation/HelixConfiguration.md

+ 5 - 1
Documentation/HelixConfiguration.md

@@ -10,9 +10,13 @@ CompileFlags:
 
 You also need to configure the clangd server to detect headers properly from the Serenity toolchain. To do this, create a `.helix/languages.toml` file in the project root:
 ```toml
+[language-server.serenity]
+command = "clangd"
+args = ["--query-driver=/path/to/serenity/Toolchain/Local/**/*", "--header-insertion=never"]
+
 [[language]]
 name = "cpp"
-language-server = { command = "clangd", args=["--query-driver=/path/to/serenity/Toolchain/Local/**/*", "--header-insertion=never"] }
+language-servers = ["serenity"]
 ```
 
 > Make sure to replace `/path/to/serenity` with the actual path in the snippet above!