diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-06-24 13:47:10 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-06-25 17:14:28 +0200 |
commit | 036da0d07921e67090d1a62c9a4e382ca09d8584 (patch) | |
tree | cd5326a81fe031c24b41a8cb524126a9ddb76e06 /runtime/doc/tips.txt | |
parent | 3688735c2b63337ab8d8b12ac08b4e6e064e98a2 (diff) | |
download | rneovim-036da0d07921e67090d1a62c9a4e382ca09d8584.tar.gz rneovim-036da0d07921e67090d1a62c9a4e382ca09d8584.tar.bz2 rneovim-036da0d07921e67090d1a62c9a4e382ca09d8584.zip |
fix(docs): vimdoc syntax errors
gen_help_html: truncate parse-error sample text
Diffstat (limited to 'runtime/doc/tips.txt')
-rw-r--r-- | runtime/doc/tips.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/tips.txt b/runtime/doc/tips.txt index 5d5e89da77..05f41005cc 100644 --- a/runtime/doc/tips.txt +++ b/runtime/doc/tips.txt @@ -47,7 +47,7 @@ is an overview with tags to jump to: |gf| Go to file name under the cursor. -|%| Go to matching (), {}, [], /* */, #if, #else, #endif. +|%| Go to matching (), {}, [], `/* */`, #if, #else, #endif. |[/| Go to previous start of comment. |]/| Go to next end of comment. |[#| Go back to unclosed #if, #ifdef, or #else. @@ -196,7 +196,7 @@ charset.c digraph.c ... -and I want to rename *.c *.bla. I'd do it like this: > +and I want to rename `*.c` `*.bla`. I'd do it like this: > $ vim :r !ls *.c |