diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-06-21 14:14:51 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2019-09-28 17:46:25 +0200 |
commit | 06ee45b9b1c14c7ce6cb23403cdbe2852d495cad (patch) | |
tree | 307c230ae37ebd6775b7066c92991c7ba7038ed4 /src/nvim/lua/executor.c | |
parent | 167a1cfdef0c4b3526830ad0356f06bf480df6af (diff) | |
download | rneovim-06ee45b9b1c14c7ce6cb23403cdbe2852d495cad.tar.gz rneovim-06ee45b9b1c14c7ce6cb23403cdbe2852d495cad.tar.bz2 rneovim-06ee45b9b1c14c7ce6cb23403cdbe2852d495cad.zip |
tree-sitter: fix lint, delete "demo" plugin (replaced by functional tests)
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index aa83e3c1ba..127458fe39 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -839,9 +839,9 @@ static void nlua_add_treesitter(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL lua_pushcfunction(lstate, create_tslua_parser); lua_setfield(lstate, -2, "_create_ts_parser"); - lua_pushcfunction(lstate, ts_lua_register_lang); + lua_pushcfunction(lstate, tslua_register_lang); lua_setfield(lstate, -2, "_ts_add_language"); - lua_pushcfunction(lstate, ts_lua_inspect_lang); + lua_pushcfunction(lstate, tslua_inspect_lang); lua_setfield(lstate, -2, "_ts_inspect_language"); } |