Jumping to the next placeholder in a snippet doesn't work after a completion.
My testing minimal init.vim
call plug#begin('~/test')
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
Plug 'neovim/nvim-lsp'
Plug 'nvim-lua/completion-nvim'
Plug 'nvim-lua/completion-nvim'
call plug#end()
lua require'nvim_lsp'.pyls.setup{on_attach=require'completion'.on_attach}
au Filetype lua setl omnifunc=v:lua.vim.lsp.omnifunc
" Use <Tab> and <S-Tab> to navigate through popup menu
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
" Set completeopt to have a better completion experience
set completeopt=menuone,noinsert,noselect
Tried without inoremap <tab>
too.
How to reproduce
Expand any snippet with two or more placeholders, autocomplete anything then press tab, it doesn't work.
e.g. from ${1} import ${2}
from<tab><c-n><c-n><cr><tab>
while from<tab><tab>
does work.