aboutsummaryrefslogtreecommitdiff
path: root/scripts/gen_vimdoc.py
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-09-14 11:08:31 +0200
committerGitHub <noreply@github.com>2022-09-14 11:08:31 +0200
commitddb762f4013ac2532ad45704466058d867e3a6ed (patch)
tree2903c84de8106943a661dc193705ddf2a7c42244 /scripts/gen_vimdoc.py
parent8b0b0a5c32d3e913f273b9eb11e572f58f7cbd35 (diff)
downloadrneovim-ddb762f4013ac2532ad45704466058d867e3a6ed.tar.gz
rneovim-ddb762f4013ac2532ad45704466058d867e3a6ed.tar.bz2
rneovim-ddb762f4013ac2532ad45704466058d867e3a6ed.zip
docs(treesitter): clean up and update treesitter.txt (#20142)
* add type annotations to code * clean up and expand static documentation * consistent use of tags for static and generated docs
Diffstat (limited to 'scripts/gen_vimdoc.py')
-rwxr-xr-xscripts/gen_vimdoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py
index 23ed0e3f08..766c420c7d 100755
--- a/scripts/gen_vimdoc.py
+++ b/scripts/gen_vimdoc.py
@@ -260,7 +260,7 @@ CONFIG = {
'helptag_fmt': lambda name: (
'*lua-treesitter-core*'
if name.lower() == 'treesitter'
- else f'*treesitter-{name.lower()}*'),
+ else f'*lua-treesitter-{name.lower()}*'),
'fn_helptag_fmt': lambda fstem, name: (
f'*{name}()*'
if name != 'new'