Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support treesit ts mode for csharp #993

Merged
merged 2 commits into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion acm/acm-backend-codeium.el
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
(c++-mode . 4)
(c++-ts-mode . 4)
(csharp-mode . 5)
(csharp-tree-sitter-mode . 5)
(csharp-ts-mode . 5)
(css-mode . 6)
(css-ts-mode . 6)
Expand Down
5 changes: 3 additions & 2 deletions lsp-bridge.el
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ Possible choices are basedpyright_ruff, pyright_ruff, pyright-background-analysi
(ess-r-mode . "rlanguageserver")
((graphql-mode graphql-ts-mode) . "graphql-lsp")
(swift-mode . "swift-sourcekit")
(csharp-mode . lsp-bridge-csharp-lsp-server)
((csharp-mode csharp-ts-mode) . lsp-bridge-csharp-lsp-server)
(kotlin-mode . "kotlin-language-server")
(verilog-mode . "verible")
(vhdl-mode . "vhdl-tool")
Expand Down Expand Up @@ -658,6 +658,7 @@ Possible choices are basedpyright_ruff, pyright_ruff, pyright-background-analysi
verilog-mode-hook
swift-mode-hook
csharp-mode-hook
csharp-ts-mode-hook
telega-chat-mode-hook
markdown-mode-hook
kotlin-mode-hook
Expand Down Expand Up @@ -734,7 +735,7 @@ you can customize `lsp-bridge-get-workspace-folder' to return workspace folder p
(c++-mode . c-basic-offset) ; C++
(markdown-mode . c-basic-offset) ; Markdown.
(csharp-mode . c-basic-offset) ; C#
(csharp-tree-sitter-mode . csharp-tree-sitter-indent-offset) ; C#
(csharp-ts-mode . csharp-ts-mode-indent-offset) ; C#
(d-mode . c-basic-offset) ; D
(julia-mode . c-basic-offset) ; Julia
(java-mode . c-basic-offset) ; Java
Expand Down
Loading