prabirshrestha
asyncomplete-ultisnips.vim
Vim Script

provides ultisnips autocomplete for asyncomplete.vim

Last updated Apr 17, 2026
34
Stars
2
Forks
2
Issues
0
Stars/day
Attention Score
1
Language breakdown
Vim Script 100.0%
โ–ธ Files click to expand
README

UltiSnips source for asyncomplete.vim =====================================

Provide Ultisnips autocompletion source for asyncomplete.vim

Installing

Plug 'prabirshrestha/asyncomplete.vim'
if has('python3')
    Plug 'SirVer/ultisnips'
    Plug 'honza/vim-snippets'
    Plug 'prabirshrestha/asyncomplete-ultisnips.vim'
endif

Registration

if has('python3')
    let g:UltiSnipsExpandTrigger="<c-e>"
    call asyncomplete#registersource(asyncomplete#sources#ultisnips#getsource_options({
        \ 'name': 'ultisnips',
        \ 'allowlist': ['*'],
        \ 'completor': function('asyncomplete#sources#ultisnips#completor'),
        \ }))
endif

Note: If you are using tab in asyncomplete.vim make sure to change the g:UltiSnipsExpandTrigger to something else besides tab to avoid conflicts.

Credits

All the credit goes to the following projects
๐Ÿ”— More in this category

ยฉ 2026 GitRepoTrend ยท prabirshrestha/asyncomplete-ultisnips.vim ยท Updated daily from GitHub