aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vigouroux <tomvig38@gmail.com>2021-04-01 17:10:39 +0200
committerThomas Vigouroux <tomvig38@gmail.com>2021-04-06 19:03:04 +0200
commit952508d4056b7869720f4a446f2d49963eaf937d (patch)
treee73b7c577c94b4ddcbb355947c09b33dbaabdc64
parente8bc3d717eefedc60e49e5f9c8db42a9a662f68a (diff)
downloadrneovim-952508d4056b7869720f4a446f2d49963eaf937d.tar.gz
rneovim-952508d4056b7869720f4a446f2d49963eaf937d.tar.bz2
rneovim-952508d4056b7869720f4a446f2d49963eaf937d.zip
fix(ts): move checkhealth in runtime/vim
-rw-r--r--runtime/autoload/health/treesitter.vim2
-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