diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-12-03 20:46:01 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-12-03 21:21:47 +0800 |
commit | bf4bf7f9e034ca2262e53e347ecb87054aa688d7 (patch) | |
tree | 3d3c871422999d8288a531f59d187c1e5411aefc /runtime | |
parent | 3838ee63d0af8021b506b8d1c3bb9a4ce961fb8c (diff) | |
download | rneovim-bf4bf7f9e034ca2262e53e347ecb87054aa688d7.tar.gz rneovim-bf4bf7f9e034ca2262e53e347ecb87054aa688d7.tar.bz2 rneovim-bf4bf7f9e034ca2262e53e347ecb87054aa688d7.zip |
vim-patch:9.0.0110: help tag generation picks up words in code examples
Problem: Help tag generation picks up words in code examples.
Solution: Skip over examples. (Carlo Teubner, closes vim/vim#10813)
https://github.com/vim/vim/commit/ddab3ce3457aadffb16ce0127f67a99966a065a8
Also fix mistakes in help files.
Co-authored-by: Carlo Teubner <carlo@cteubner.net>
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/builtin.txt | 2 | ||||
-rw-r--r-- | runtime/doc/eval.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 08c8e2e9d6..f9917ed035 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -8003,7 +8003,7 @@ stridx({haystack}, {needle} [, {start}]) *stridx()* Can also be used as a |method|: > GetHaystack()->stridx(needle) - +< *string()* string({expr}) Return {expr} converted to a String. If {expr} is a Number, Float, String, Blob or a composition of them, then the result diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index eb42e10338..c989b67b96 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1780,7 +1780,7 @@ v:exiting Exit code, or |v:null| before invoking the |VimLeavePre| and |VimLeave| autocmds. See |:q|, |:x| and |:cquit|. Example: > :au VimLeave * echo "Exit value is " .. v:exiting - +< *v:echospace* *echospace-variable* v:echospace Number of screen cells that can be used for an `:echo` message in the last screen line before causing the |hit-enter-prompt|. |