File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- *repeat.txt* For Vim version 9.1. Last change: 2024 Oct 05
1+ *repeat.txt* For Vim version 9.1. Last change: 2024 Oct 16
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1398,9 +1398,9 @@ For example, to profile the one_script.vim script file: >
13981398 clear the profiling statistics and start profiling again.
13991399
14001400:prof[ile] pause
1401- Don't profile until the following `:profile continue`. Can be
1402- used when doing something that should not be counted (e.g., an
1403- external command). Does not nest.
1401+ Stop profiling until the next `:profile continue` command.
1402+ Can be used when doing something that should not be counted
1403+ (e.g., an external command). Does not nest.
14041404
14051405:prof[ile] continue
14061406 Continue profiling after `:profile pause`.
Original file line number Diff line number Diff line change 11" Vim syntax file
22" Language: Vim help file
33" Maintainer: The Vim Project <https://github.com/vim/vim>
4- " Last Change: 2024 Oct 08
4+ " Last Change: 2024 Oct 16
55" Former Maintainer: Bram Moolenaar <Bram@vim.org>
66
77" Quit when a (custom) syntax file was already loaded
@@ -47,7 +47,8 @@ syn match helpOption "'[a-z]\{2,\}'"
4747syn match helpOption " 't_..'"
4848syn match helpNormal " 'ab'"
4949syn match helpCommand " `[^` \t ]\+ `" hs =s + 1 ,he =e - 1 contains =helpBacktick
50- syn match helpCommand " \( ^\| [^a-z"[]\)\z s`[^`]\+ `\z e\( [^a-z\t ."']\| $\) "hs=s+1,he=e-1 contains=helpBacktick
50+ " doesn't allow a . directly after an ending backtick. See :helpgrep `[^`,]\+ [^`,]\+`\.
51+ syn match helpCommand " \( ^\| [^a-z"[]\)\z s`[^`]\+ `\z e\( [^a-z\t ."']\| [.?!]\? $\) "hs=s+1,he=e-1 contains=helpBacktick
5152syn match helpHeader " \s *\z s.\{ -}\z e\s\=\~ $" nextgroup =helpIgnore
5253syn match helpGraphic " .* \z e`$" nextgroup =helpIgnore
5354if has (" conceal" )
You can’t perform that action at this time.
0 commit comments