Closed dustyghost closed 4 years ago
I'm not quite sure, I can't reproduce, and this really isn't an OmniSharp-vim issue.
However, one thing I think is wrong with your config is using the "\<C-n>"
form in your <expr>
mappings. Try this and see if it helps:
inoremap <expr> <Tab> pumvisible() ? '<C-n>' : '<Tab>'
inoremap <expr> <S-Tab> pumvisible() ? '<C-p>' : '<S-Tab>'
inoremap <expr> <cr> pumvisible() ? asyncomplete#close_popup() : '<cr>'
thank you!! Ctl + n or Ctl +p work! I appreciate the help even though it turns out this was not an OmniSharp issue. 👍 Mostly it was user error! ;)
Glad to hear you got it working!
I am not sure what I am doing wrong here, but I get the popup when start typing a word such as public, so I just type pu and then the dialogue pops up to suggest the full word, but when I hit tab is just adds a tab after the word with out completing.
Here is by init.vim if it helps