We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257964f commit e847eccCopy full SHA for e847ecc
autoload/OmniSharp/popup.vim
@@ -225,9 +225,11 @@ endfunction
225
" Neovim scrolling works by giving focus to the popup and running normal-mode
226
" commands
227
function! s:NvimPopupNormal(commands)
228
- call nvim_set_current_win(s:lastwinid)
+ " Ensure that the OmniSharp_popup_close autocmds are not triggered to close
229
+ " the floating window before scrolling
230
+ noautocmd call nvim_set_current_win(s:lastwinid)
231
execute 'normal!' eval(printf('"\<C-%s>"', a:commands))
- call nvim_set_current_win(s:parentwinid)
232
+ noautocmd call nvim_set_current_win(s:parentwinid)
233
endfunction
234
235
" Editing buffers is not allowed from <expr> mappings. The popup mappings are
0 commit comments