Closed krehwell closed 3 years ago
I think you're looking for :h \
Ctrl-Space mappings are a bit tricky in Vim. In gvim on Windows I can use this:
imap <silent> <buffer> <C-Space> <Plug>(omnisharp_signature_help)
But that doesn't work in terminal vim. In Terminal vim in arch linux I can use this:
imap <silent> <buffer> <C-@> <Plug>(omnisharp_signature_help)
But that doesn't work in gvim.
The example .vimrc and the OmniSharp helper plugin nickspoons/vim-sharpenup both use default mapping <C-\>
(Ctrl+Backslash) for this.
Also, take a look at the README section on popup mappings, which explains some of the default temporary mappings available when the signature help popup is open. It is possible to cycle through overloads, which can be useful.
signature help and type look up is the one I am looking for. thank you.
when we want to write a function, the parameter only be shown as the first time the intellisense suggest the function name with its parameter. however while we are about to fill the function parameter, there is no pop up anymore which shows what's the function's arguments was.
Output:
Expected Ouput:
also maybe to be added to a way to trigger the intellisense, usually IDE map it as
Ctrl-Space
to trigger it just in case it does not appear