aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-01-28 12:44:32 -0800
committerJustin M. Keyes <justinkz@gmail.com>2024-01-28 23:56:03 +0100
commit50cd5ed360ee76352bdfe1a49fa5746731c0ee16 (patch)
tree075493f909718a3291a1fc0fbd460fda1aa9778d
parent4ddd999f65533ed49f328e3bd1d8c2fafbdbc88e (diff)
downloadrneovim-50cd5ed360ee76352bdfe1a49fa5746731c0ee16.tar.gz
rneovim-50cd5ed360ee76352bdfe1a49fa5746731c0ee16.tar.bz2
rneovim-50cd5ed360ee76352bdfe1a49fa5746731c0ee16.zip
fix(health): check more "old" files
-rw-r--r--runtime/lua/nvim/health.lua12
1 files changed, 9 insertions, 3 deletions
diff --git a/runtime/lua/nvim/health.lua b/runtime/lua/nvim/health.lua
index 1a440c9827..0480e4df4e 100644
--- a/runtime/lua/nvim/health.lua
+++ b/runtime/lua/nvim/health.lua
@@ -23,9 +23,15 @@ local function check_runtime()
health.start('Runtime')
-- Files from an old installation.
local bad_files = {
+ ['plugin/health.vim'] = false,
+ ['autoload/health/nvim.vim'] = false,
+ ['autoload/health/provider.vim'] = false,
+ ['autoload/man.vim'] = false,
['plugin/man.vim'] = false,
+ ['queries/help/highlights.scm'] = false,
+ ['queries/help/injections.scm'] = false,
['scripts.vim'] = false,
- ['autoload/man.vim'] = false,
+ ['syntax/syncolor.vim'] = false,
}
local bad_files_msg = ''
for k, _ in pairs(bad_files) do
@@ -42,10 +48,10 @@ local function check_runtime()
if not ok then
health.error(
string.format(
- '$VIMRUNTIME has files from an old installation (this can cause weird behavior):\n%s',
+ 'Found old files in $VIMRUNTIME (this can cause weird behavior):\n%s',
bad_files_msg
),
- { 'Delete $VIMRUNTIME (or uninstall Nvim), then reinstall Nvim.' }
+ { 'Delete the $VIMRUNTIME directory (or uninstall Nvim), then reinstall Nvim.' }
)
end
end