OmniSharp / omnisharp-vim

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

function parameters #758

Closed kubil6y closed 2 years ago

kubil6y commented 2 years ago

I have everything working together with coc.nvim, ale diagnosis and omnisharp-vim but one important thing is missing. when i press comma "," inside of function parenthesis i dont get the types. i have been looking for past issues but have not seen anything close to it. any ideas?

nickspoons commented 2 years ago

Trigger SignatureHelp with a mapping.

The example .vimrc in the README suggests <C-\> (this is also the default mapping used by vim-sharpenup):

nmap <silent> <buffer> <C-\> <Plug>(omnisharp_signature_help)
kubil6y commented 2 years ago

i love you brother.