diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2019-06-09 13:26:48 +0200 |
|---|---|---|
| committer | Björn Linse <bjorn.linse@gmail.com> | 2019-09-28 14:55:43 +0200 |
| commit | 4ea5e63aa8c866b4fcc9d10f1a26078d2517f96a (patch) | |
| tree | 057fc3138c63438b1e945ef8257cfe179803d958 /runtime/plugin | |
| parent | afba23099fccc929fd0319a9a965a7b727407c7a (diff) | |
| download | rneovim-4ea5e63aa8c866b4fcc9d10f1a26078d2517f96a.tar.gz rneovim-4ea5e63aa8c866b4fcc9d10f1a26078d2517f96a.tar.bz2 rneovim-4ea5e63aa8c866b4fcc9d10f1a26078d2517f96a.zip | |
tree-sitter: add basic testing on ci
build tree-sitter c parser on ci for testing purposes
Diffstat (limited to 'runtime/plugin')
| -rw-r--r-- | runtime/plugin/ts_test.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/plugin/ts_test.vim b/runtime/plugin/ts_test.vim index 76318163f6..9420c2c9d3 100644 --- a/runtime/plugin/ts_test.vim +++ b/runtime/plugin/ts_test.vim @@ -6,7 +6,7 @@ func! TSTest() return end " TODO: module! - lua theparser = require'vim.tree_sitter'.create_parser(0) + lua theparser = vim.tree_sitter.create_parser(0) lua require'tree_sitter_demo' let g:has_ts = v:true endfunc |