diff options
author | Aaron Housh | 2022-03-12 00:19:31 +0000 |
---|---|---|
committer | GitHub | 2022-03-12 00:19:31 +0000 |
commit | 0712eb3e3b66005ac6b768159e8eaef1d92fc97a (patch) | |
tree | fe3450cf7de8665ecb93164e3c79a36ae62bbc4f /languages.toml | |
parent | cf8f59ddd0fa6a18b52fc14cf1f3722b494a5be3 (diff) |
Add csharp lsp support (#1788)
* add csharp lsp support
* remove hostPID
* update docs
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index 4c2bb1c4..c54eabba 100644 --- a/languages.toml +++ b/languages.toml @@ -206,9 +206,10 @@ name = "c-sharp" scope = "source.csharp" injection-regex = "c-?sharp" file-types = ["cs"] -roots = [] +roots = ["sln", "csproj"] comment-token = "//" indent = { tab-width = 4, unit = "\t" } +language-server = { command = "OmniSharp", args = [ "--languageserver", "--stdio" ] } [[grammar]] name = "c-sharp" |