aboutsummaryrefslogtreecommitdiff
path: root/scripts/gen_vimdoc.py
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-07-19 12:10:03 +0200
committerGitHub <noreply@github.com>2022-07-19 12:10:03 +0200
commit93bd6fb2c8e1f68a48169a63caae1fc0b4797a8a (patch)
treecdf0ab1c82559e5ef906f4981e6818f4ef0a0bc2 /scripts/gen_vimdoc.py
parent7b835ba79672bfc9e802ffb650a05aa4b67b1272 (diff)
parent4e3699d13a13ab07cb344f43c3fdd474ca72535e (diff)
downloadrneovim-93bd6fb2c8e1f68a48169a63caae1fc0b4797a8a.tar.gz
rneovim-93bd6fb2c8e1f68a48169a63caae1fc0b4797a8a.tar.bz2
rneovim-93bd6fb2c8e1f68a48169a63caae1fc0b4797a8a.zip
Merge pull request #19427 from Maverun/maveBranchDoc
fix(docs): remove internal function from docs (nvim__*)
Diffstat (limited to 'scripts/gen_vimdoc.py')
-rwxr-xr-xscripts/gen_vimdoc.py2
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'