diff options
author | Maverun <maverun@protonmail.ch> | 2022-07-19 05:03:22 -0400 |
---|---|---|
committer | Maverun <maverun@protonmail.ch> | 2022-07-19 05:03:22 -0400 |
commit | 4e3699d13a13ab07cb344f43c3fdd474ca72535e (patch) | |
tree | 0f28b194cd7ce9226096738b0f207150c35c1bf2 /scripts/gen_vimdoc.py | |
parent | 1b462705d049fa0cf2bb99bae9112b84abea8d5a (diff) | |
download | rneovim-4e3699d13a13ab07cb344f43c3fdd474ca72535e.tar.gz rneovim-4e3699d13a13ab07cb344f43c3fdd474ca72535e.tar.bz2 rneovim-4e3699d13a13ab07cb344f43c3fdd474ca72535e.zip |
fix(docs): remove internal function from docs (nvim__*)
Diffstat (limited to 'scripts/gen_vimdoc.py')
-rwxr-xr-x | scripts/gen_vimdoc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py index 22fd155d32..74b35b4e9b 100755 --- a/scripts/gen_vimdoc.py +++ b/scripts/gen_vimdoc.py @@ -897,6 +897,8 @@ def fmt_doxygen_xml_as_vimhelp(filename, target): doc = fmt_node_as_vimhelp(fn['desc_node'], fmt_vimhelp=True) if not doc and fn['brief_desc_node']: doc = fmt_node_as_vimhelp(fn['brief_desc_node']) + if not doc and name.startswith("nvim__"): + continue if not doc: doc = 'TODO: Documentation' |