From a422f2136a001921fb54e7b83b6d00e6d5f42a4a Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Thu, 9 Sep 2021 19:28:12 -0600 Subject: docs(gen_vimdoc.py): ignore health.lua files #15614 --- runtime/doc/treesitter.txt | 13 ------------- scripts/gen_vimdoc.py | 3 +-- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/runtime/doc/treesitter.txt b/runtime/doc/treesitter.txt index a509c328e5..86316b8ac5 100644 --- a/runtime/doc/treesitter.txt +++ b/runtime/doc/treesitter.txt @@ -767,17 +767,4 @@ new({source}, {lang}, {opts}) *languagetree.new()* the injection language query per language. - -============================================================================== -Lua module: vim.treesitter.health *treesitter-health* - -check_health() *check_health()* - TODO: Documentation - -list_parsers() *list_parsers()* - Lists the parsers currently installed - - Return: ~ - A list of parsers - vim:tw=78:ts=8:ft=help:norl: diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py index 2efa544c2e..320c44e860 100755 --- a/scripts/gen_vimdoc.py +++ b/scripts/gen_vimdoc.py @@ -197,7 +197,6 @@ CONFIG = { 'query.lua', 'highlighter.lua', 'languagetree.lua', - 'health.lua', ], 'files': ' '.join([ os.path.join(base_dir, 'runtime/lua/vim/treesitter.lua'), @@ -1131,7 +1130,7 @@ Doxyfile = textwrap.dedent(''' INPUT_FILTER = "{filter}" EXCLUDE = EXCLUDE_SYMLINKS = NO - EXCLUDE_PATTERNS = */private/* + EXCLUDE_PATTERNS = */private/* */health.lua EXCLUDE_SYMBOLS = EXTENSION_MAPPING = lua=C EXTRACT_PRIVATE = NO -- cgit