fix(docs): remove internal function from docs (nvim__*)

This commit is contained in:
Maverun
2022-07-19 05:03:22 -04:00
parent 1b462705d0
commit 4e3699d13a
2 changed files with 2 additions and 28 deletions

View File

@@ -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'