mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:20:04 +08:00
15 lines
513 B
VimL
15 lines
513 B
VimL
"=============================================================================
|
|
" FILE: necosyntax.vim
|
|
" AUTHOR: Jia Sui <jsfaint@gmail.com>
|
|
" License: MIT license
|
|
"=============================================================================
|
|
|
|
" Register source for NCM
|
|
autocmd User CmSetup call cm#register_source({
|
|
\ 'name': 'neco-syntax',
|
|
\ 'abbreviation': 'syntax',
|
|
\ 'priority': 8,
|
|
\ 'cm_refresh': 'cm#sources#necosyntax#refresh',
|
|
\ 'cm_refresh_patterns': ['\w\+$'],
|
|
\ })
|