LSP-OmniSharp
LSP-OmniSharp copied to clipboard
semantic highlighting, coloring unused code differently
Consider the following code, I want to "dim" or use custom coloring on the unreachable or unused code. Couldn't find a way to achieve this with semantic highlighting, the LSP documentation doesn't provide a semantic token specifically for this it seems, or I did not notice it. Is this possible and supported and if so what is the correct way to add this to a custom color scheme?
#if false
// Some code that does not get compiled because it's wrapped within #if false
#endif