diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-10-09 08:21:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-09 05:21:52 -0700 |
commit | 09dffb9db7d16496e55e86f78ab60241533d86f6 (patch) | |
tree | b41dda1a0c3f127ea5ab4a0e05516eda89341132 /scripts/gen_vimdoc.py | |
parent | de7be43acc9459e83e4fd5dcb390b5f2d2945c70 (diff) | |
download | rneovim-09dffb9db7d16496e55e86f78ab60241533d86f6.tar.gz rneovim-09dffb9db7d16496e55e86f78ab60241533d86f6.tar.bz2 rneovim-09dffb9db7d16496e55e86f78ab60241533d86f6.zip |
docs: various #12823
- increase python line-length limit from 88 => 100.
- gen_help_html: fix bug in "tag" case (tbl_count => tbl_contains)
ref #15632
fix #18215
fix #18479
fix #20527
fix #20532
Co-authored-by: Ben Weedon <ben@weedon.email>
Diffstat (limited to 'scripts/gen_vimdoc.py')
-rwxr-xr-x | scripts/gen_vimdoc.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py index 2612260226..3ee9d8b5dd 100755 --- a/scripts/gen_vimdoc.py +++ b/scripts/gen_vimdoc.py @@ -2,9 +2,7 @@ """Generates Nvim :help docs from C/Lua docstrings, using Doxygen. Also generates *.mpack files. To inspect the *.mpack structure: - - :new | put=v:lua.vim.inspect(msgpackparse(readfile('runtime/doc/api.mpack'))) - + :new | put=v:lua.vim.inspect(v:lua.vim.mpack.unpack(readfile('runtime/doc/api.mpack','B'))) Flow: main @@ -287,7 +285,7 @@ annotation_map = { 'FUNC_API_FAST': '|api-fast|', 'FUNC_API_CHECK_TEXTLOCK': 'not allowed when |textlock| is active', 'FUNC_API_REMOTE_ONLY': '|RPC| only', - 'FUNC_API_LUA_ONLY': '|vim.api| only', + 'FUNC_API_LUA_ONLY': 'Lua |vim.api| only', } |