diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2021-04-01 17:10:39 +0200 |
---|---|---|
committer | Thomas Vigouroux <tomvig38@gmail.com> | 2021-04-06 19:03:04 +0200 |
commit | 952508d4056b7869720f4a446f2d49963eaf937d (patch) | |
tree | e73b7c577c94b4ddcbb355947c09b33dbaabdc64 | |
parent | e8bc3d717eefedc60e49e5f9c8db42a9a662f68a (diff) | |
download | rneovim-952508d4056b7869720f4a446f2d49963eaf937d.tar.gz rneovim-952508d4056b7869720f4a446f2d49963eaf937d.tar.bz2 rneovim-952508d4056b7869720f4a446f2d49963eaf937d.zip |
fix(ts): move checkhealth in runtime/vim
-rw-r--r-- | runtime/autoload/health/treesitter.vim | 2 | ||||
-rw-r--r-- | runtime/lua/vim/treesitter/health.lua (renamed from runtime/lua/nvim/treesitter.lua) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/health/treesitter.vim b/runtime/autoload/health/treesitter.vim index 5d3f62d2f5..5f167310ce 100644 --- a/runtime/autoload/health/treesitter.vim +++ b/runtime/autoload/health/treesitter.vim @@ -1,5 +1,5 @@ function! health#treesitter#check() abort call health#report_start('Checking treesitter configuration') - lua require 'nvim/treesitter'.check_health() + lua require 'vim.treesitter.health'.check_health() endfunction diff --git a/runtime/lua/nvim/treesitter.lua b/runtime/lua/vim/treesitter/health.lua index dd0b11a6c7..dd0b11a6c7 100644 --- a/runtime/lua/nvim/treesitter.lua +++ b/runtime/lua/vim/treesitter/health.lua |