diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-09-25 02:20:47 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2022-09-28 18:34:20 +0200 |
commit | 16336c486ecb5a60e85a870904316308c7d7fc3f (patch) | |
tree | 887ccb63a5184b32dd45bf27261701e23c2fdeeb /runtime/lua/vim/lsp/util.lua | |
parent | 7b4c49888a97c21f346b8337330fbc8e196b9cf8 (diff) | |
download | rneovim-16336c486ecb5a60e85a870904316308c7d7fc3f.tar.gz rneovim-16336c486ecb5a60e85a870904316308c7d7fc3f.tar.bz2 rneovim-16336c486ecb5a60e85a870904316308c7d7fc3f.zip |
feat(gen_help_html.lua): adapt to new parser
- adapt to parser changes from https://github.com/vigoux/tree-sitter-vimdoc/pull/16
- numerous other generator improvements
Diffstat (limited to 'runtime/lua/vim/lsp/util.lua')
-rw-r--r-- | runtime/lua/vim/lsp/util.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua index dbc18963f9..aea2a27f9e 100644 --- a/runtime/lua/vim/lsp/util.lua +++ b/runtime/lua/vim/lsp/util.lua @@ -907,8 +907,8 @@ function M.convert_signature_help_to_markdown_lines(signature_help, ft, triggers return end --The active signature. If omitted or the value lies outside the range of - --`signatures` the value defaults to zero or is ignored if `signatures.length - --=== 0`. Whenever possible implementors should make an active decision about + --`signatures` the value defaults to zero or is ignored if `signatures.length == 0`. + --Whenever possible implementors should make an active decision about --the active signature and shouldn't rely on a default value. local contents = {} local active_hl |