Closed loshjawrence closed 3 years ago
My testing minimal init.vim
call plug#begin('~/.vim/bundle') Plug 'neovim/nvim-lspconfig' Plug 'nvim-lua/completion-nvim' call plug#end() inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>" inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>" lua require'lspconfig'.tsserver.setup{on_attach=require'completion'.on_attach} au Filetype javascript setl omnifunc=v:lua.vim.lsp.omnifunc set completeopt=menuone,noinsert,noselect
How to reproduce
,
Expected behavior The cursor should not jump into the floating window of the function signature help.
Closing as this seems to be a neovim issue.
This is not a neovim issue, but a completion.nvim issue
I'm having the same issue
My testing minimal init.vim
How to reproduce
,
or holding delete on a long string of,
Expected behavior The cursor should not jump into the floating window of the function signature help.