1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 07:10:06 +08:00

Avoid load script twice

This commit is contained in:
Shidong Wang 2020-06-07 15:25:02 +08:00
parent bd64b0e899
commit 06c7cc740a

View File

@ -39,7 +39,11 @@
let s:SYS = SpaceVim#api#import('system')
" Default Options:
let s:enable_native_support = 0
if exists('s:enable_native_support')
finish
else
let s:enable_native_support = 0
endif
function! SpaceVim#layers#lang#kotlin#plugins() abort