From d0d4160dd13fad952338b8582e2db8838172bbf1 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 8 Sep 2023 21:05:35 +0800 Subject: feat(runtime): highlight hl groups in syntax.txt (#25050) - Add runtime/lua/vim/vimhelp.lua, which is a translation of Vim's runtime/import/dist/vimhelp.vim. - Unlike Vim, run the highlighting from an ftplugin file instead of a syntax file, so that it is run even if using treesitter. --- runtime/ftplugin/help.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 runtime/ftplugin/help.lua (limited to 'runtime/ftplugin/help.lua') diff --git a/runtime/ftplugin/help.lua b/runtime/ftplugin/help.lua new file mode 100644 index 0000000000..4cc3386167 --- /dev/null +++ b/runtime/ftplugin/help.lua @@ -0,0 +1,3 @@ +if vim.endswith(vim.fs.normalize(vim.api.nvim_buf_get_name(0)), '/doc/syntax.txt') then + require('vim.vimhelp').highlight_groups() +end -- cgit