You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
This is a known Utlisnip problem. Whatever "expand" imap you have for snippets in UltiSnips (default is tab), you cant use that key anywhere else.
So I would suggest something like C-n and C-p for pumvisible popup and TabS-Tab for UtliSnip expansion
Jumping to the next placeholder in a snippet doesn't work after a completion.
My testing minimal init.vim
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.The text was updated successfully, but these errors were encountered: