mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 17:50:05 +08:00
10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
Execute ( SpaceVim lua api: data#toml ):
|
|
if !has('nvim-0.5.0')
|
|
finish
|
|
endif
|
|
let cmp = SpaceVim#api#import('vim#compatible')
|
|
lua sp_toml = require('spacevim.api').import('data.toml')
|
|
AssertEqual cmp.luaeval("sp_toml.parse_file('mode/basic.toml').options.colorscheme"), 'gruvbox'
|
|
|
|
|