1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 12:50:04 +08:00

fix(lint): fix layer vader test

This commit is contained in:
wsdjeg 2022-05-09 12:40:27 +08:00
parent 4f06085b25
commit 7fcb497f39
3 changed files with 15 additions and 0 deletions

View File

@ -22,3 +22,9 @@ function! SpaceVim#layers#framework#django#plugins() abort
call add(plugins, [g:_spacevim_root_dir . 'bundle/django-plus.vim', {'merged' : 0}])
return plugins
endfunction
function! SpaceVim#layers#framework#django#health() abort
call SpaceVim#layers#framework#django#plugins()
return 1
endfunction

View File

@ -23,3 +23,8 @@ function! SpaceVim#layers#lang#jsonnet#plugins() abort
call add(plugins, [g:_spacevim_root_dir . 'bundle/vim-jsonnet', {'merged' : 0}])
return plugins
endfunction
function! SpaceVim#layers#lang#jsonnet#health() abort
call SpaceVim#layers#lang#jsonnet#plugins()
return 1
endfunction

View File

@ -24,3 +24,7 @@ function! SpaceVim#layers#lang#yang#plugins() abort
return plugins
endfunction
function! SpaceVim#layers#lang#yang#health() abort
call SpaceVim#layers#lang#yang#plugins()
return 1
endfunction