diff options
author | Gregory Anders <greg@gpanders.com> | 2021-09-16 11:49:11 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-16 10:49:11 -0700 |
commit | d140d3bd33010b968908059bc49b161ed33395fe (patch) | |
tree | f25d2a1b13050b08ee0685d0952a4f5d952f8492 /scripts/gen_vimdoc.py | |
parent | 29bc648d2b259d434c46f3eb28d3513d2a4aef11 (diff) | |
download | rneovim-d140d3bd33010b968908059bc49b161ed33395fe.tar.gz rneovim-d140d3bd33010b968908059bc49b161ed33395fe.tar.bz2 rneovim-d140d3bd33010b968908059bc49b161ed33395fe.zip |
fix(docs): ignore _*.lua files from auto doc generation #15678
Diffstat (limited to 'scripts/gen_vimdoc.py')
-rwxr-xr-x | scripts/gen_vimdoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py index 320c44e860..c8eb71985c 100755 --- a/scripts/gen_vimdoc.py +++ b/scripts/gen_vimdoc.py @@ -1130,7 +1130,7 @@ Doxyfile = textwrap.dedent(''' INPUT_FILTER = "{filter}" EXCLUDE = EXCLUDE_SYMLINKS = NO - EXCLUDE_PATTERNS = */private/* */health.lua + EXCLUDE_PATTERNS = */private/* */health.lua */_*.lua EXCLUDE_SYMBOLS = EXTENSION_MAPPING = lua=C EXTRACT_PRIVATE = NO |