Skip to content
This repository was archived by the owner on Oct 13, 2021. It is now read-only.

Completion breaks jumping to the next placeholder in ultisnips #389

@devenv

Description

@devenv

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions