sharpchen
sharpchen
Oops it should be `sources.providers.snippets.min_keyword_length = 1`
[Shiki for Rehype](https://shiki.style/packages/rehype#inline-code) supports the similar, can we have this?
Build from source is fine, I can't reproduce in it
Release is fine too
You could use bulitin command `Edit.FormatDocument` ```vim nnoremap k :vsc Edit.FormatDocument ``` Or use vim marks(replace z to any key you like) ```vim nnoremap k mzgg=G`z ```
The workaround should be easy, just wrap your formatting keymap/event to skip when current active client is `csharp_ls`, something like this: ```lua vim.keymap.set('n', [[k]], function() local lsp_methods = require('vim.lsp.protocol').Methods local...
See: https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/csharp-formatting-options#new-line-options ```editorconfig # CSharp formatting rules: [*.cs] csharp_new_line_before_open_brace = none csharp_new_line_before_else = false csharp_new_line_before_catch = false csharp_new_line_before_finally = false csharp_new_line_before_members_in_object_initializers = false csharp_new_line_before_members_in_anonymous_types = false csharp_new_line_between_query_expression_clauses = false ```
Well it's ok for not having much knowledge about typescript, I use it just for more informative intellisense, nothing else. However, I believe there are still some gaps in your...
I just think it should be available anyway. Sometimes alias is more readable such as when you create a symlink with `-Target` instead of `-Value`. And I wonder how could...
Yeah, there's no `-Target` in the list when after `-T` so I thought maybe I missed something