aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/repeat.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2022-09-29 13:46:44 +0200
committerJustin M. Keyes <justinkz@gmail.com>2022-10-04 16:49:17 +0200
commit088abbeb6e6aecfc34b42db9b8d1396f493a2466 (patch)
tree39b0ddd7de032afad6088330191f0345dae9a2fa /runtime/doc/repeat.txt
parent28fbdd338586e066aa3e540333513b04c54361bc (diff)
downloadrneovim-088abbeb6e6aecfc34b42db9b8d1396f493a2466.tar.gz
rneovim-088abbeb6e6aecfc34b42db9b8d1396f493a2466.tar.bz2
rneovim-088abbeb6e6aecfc34b42db9b8d1396f493a2466.zip
feat(docs): nested lists in HTML, update :help parser
- Docs HTML: improvements in https://github.com/neovim/tree-sitter-vimdoc allow us to many hacks in `gen_help_html.lua`. - Docs HTML: support nested lists. - Docs HTML: avoid extra newlines (too much whitespace) in old (preformatted) layout. - Docs HTML: disable golden-grid for narrow viewport. - Workaround for https://github.com/neovim/neovim/issues/20404 closes https://github.com/neovim/neovim/issues/20404
Diffstat (limited to 'runtime/doc/repeat.txt')
-rw-r--r--runtime/doc/repeat.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index b0332269d7..b84274cc9e 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -471,7 +471,7 @@ flag when defining the function, it is not relevant when executing it. >
:set cpo-=C
<
*line-continuation-comment*
-To add a comment in between the lines start with '"\ '. Notice the space
+To add a comment in between the lines start with `'"\ '`. Notice the space
after the backslash. Example: >
let array = [
"\ first entry comment
@@ -491,7 +491,7 @@ Rationale:
continuation lines to be part of the comment. Since it was like this
for a long time, when making it possible to add a comment halfway a
sequence of continuation lines, it was not possible to use \", since
- that was a valid continuation line. Using '"\ ' comes closest, even
+ that was a valid continuation line. Using `'"\ '` comes closest, even
though it may look a bit weird. Requiring the space after the
backslash is to make it very unlikely this is a normal comment line.