diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2019-03-29 21:54:34 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-05-18 22:01:14 +0200 |
commit | b102c11e3860985e25b7baf48bba079f5042125a (patch) | |
tree | fe5ddf35330f3edd28b616b08ae7ca1ae17e2d22 /src | |
parent | 974b43fd7940cd807e5a6b67c77cb2e0462b11a4 (diff) | |
download | rneovim-b102c11e3860985e25b7baf48bba079f5042125a.tar.gz rneovim-b102c11e3860985e25b7baf48bba079f5042125a.tar.bz2 rneovim-b102c11e3860985e25b7baf48bba079f5042125a.zip |
gen_vimdoc.py: get Lua docs via lua2dox.lua #9740
Diffstat (limited to 'src')
-rw-r--r-- | src/Doxyfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Doxyfile b/src/Doxyfile index de31c8355f..461fafe99d 100644 --- a/src/Doxyfile +++ b/src/Doxyfile @@ -243,7 +243,7 @@ OPTIMIZE_OUTPUT_VHDL = NO # that for custom extensions you also need to set FILE_PATTERNS otherwise the # files are not read by doxygen. -EXTENSION_MAPPING = +EXTENSION_MAPPING = lua=C # If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable @@ -672,7 +672,7 @@ INPUT_ENCODING = UTF-8 # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl -FILE_PATTERNS = *.h *.c +FILE_PATTERNS = *.h *.c *.lua # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. @@ -758,7 +758,7 @@ INPUT_FILTER = # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. -FILTER_PATTERNS = +FILTER_PATTERNS = *.lua=scripts/lua2dox_filter # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source |