1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 23:10:04 +08:00
SpaceVim/test/syntax.vader

8 lines
197 B
Plaintext
Raw Normal View History

2017-10-23 22:41:43 +08:00
Execute ( SpaceVim syntax file ):
2020-08-29 16:46:57 +08:00
let cmp = SpaceVim#api#import('vim#compatible')
for sfile in cmp.globpath(getcwd(), "syntax/*.vim")
2017-10-23 22:41:43 +08:00
exe 'so ' . sfile
2020-08-29 16:46:57 +08:00
unlet sfile
2017-10-23 22:41:43 +08:00
endfor
2020-08-29 16:46:57 +08:00
unlet cmp