comparison runtime/syntax/testdir/input/vim_ex_comment-vim9.vim @ 34870:3f9703c1bbea

runtime(vim): Improve Vim9 and legacy-script comment highlighting (#13104) Commit: https://github.com/vim/vim/commit/04e5363b823827f144409df011376d00ea6df750 Author: dkearns <dougkearns@gmail.com> Date: Thu Apr 11 06:18:37 2024 +1000 runtime(vim): Improve Vim9 and legacy-script comment highlighting (https://github.com/vim/vim/issues/13104) This is a first-pass attempt to limit matching of Vim9 and legacy-script comments to the appropriate syntactic contexts. Vim9-script comments are highlighted at top level in a Vim9-script file, in all :def functions, and in all :autocmd and :commmand command blocks. Legacy-script comments are highlighted at top level in a legacy script file, in all :func functions and in the Vim9-script preamble before the :vim9script marker command. Fixes #13047, #11307 and #9587. Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 10 Apr 2024 22:30:04 +0200
parents
children
comparison
equal deleted inserted replaced
34869:cd2cbfd9d646 34870:3f9703c1bbea
1 vim9script
2
3 # Vim comments
4
5 # Vim9-script comment
6
7 # string only recognised with leading char
8 "useless string"
9
10 function! Foo()
11 " Legacy-script comment
12 # 42 " comment
13 endfunction
14
15 def! Bar()
16 # Vim9-script comment
17 "useless string" # comment
18 enddef
19
20 command -count FooCommand {
21 # Vim9-script comment
22 "useless string" # comment
23 }
24
25 autocmd BufNewFile * {
26 # Vim9-script comment
27 "useless string" # comment
28 }
29
30
31 # Issue: #13047
32
33 if !exists(":DiffOrig")
34 command DiffOrig vert new | set bt=nofile | r ++edit %% | 0d_ | diffthis
35 \ | wincmd p | diffthis
36 endif
37
38
39 # Issue: #11307 and #11560
40
41 # This is what we call " blah