OmniSharp / omnisharp-vim

Vim omnicompletion (intellisense) and more for C#
http://www.omnisharp.net
MIT License
1.7k stars 169 forks source link

Does omnisharp-vim support decompilation? #768

Closed lubyrex closed 2 years ago

lubyrex commented 2 years ago

I saw that omnisharp-roslyn supports decompilation: https://github.com/OmniSharp/omnisharp-roslyn/pull/1751 is it possible by any chance that omnisharp-vim supports it as well?

nickspoons commented 2 years ago

Yes it does. Just enable it in your ~/.omnsharp.json file

Melandel commented 2 years ago
{
    "FormattingOptions": {
        "EnableEditorConfigSupport": true
    }
}

does the trick!

lubyrex commented 2 years ago

That is soooo awesome! thanks a lot!