blob: fd6a5d2a2a24f5bf4861196d78211a0cc8765034 [file] [log] [blame]
dkearns04e53632024-04-11 06:18:37 +10001vim9script
2
3# Vim comments
4
5# Vim9-script comment
6
7 # string only recognised with leading char
8 "useless string"
9
10function! Foo()
11 " Legacy-script comment
12 # 42 " comment
13endfunction
14
15def! Bar()
16 # Vim9-script comment
17 "useless string" # comment
18enddef
19
20command -count FooCommand {
21 # Vim9-script comment
22 "useless string" # comment
23}
24
25autocmd BufNewFile * {
26 # Vim9-script comment
27 "useless string" # comment
28}
29
30
dkearns059cbe82024-06-12 03:27:53 +100031# Multiline comments
32
33# comment
34 \ continuing comment
35 \ continuing comment
36
37# :Foo
38 \ arg1
39 #\ comment
40 \ arg2
41
42echo "TOP"
43
44
45# Line-continuation comments
46
47:Foo
48 #\ line continuation comment
49 \ arg1
50 #\ line continuation comment
51 \ arg2
52
53
dkearns04e53632024-04-11 06:18:37 +100054# Issue: #13047
55
56if !exists(":DiffOrig")
57 command DiffOrig vert new | set bt=nofile | r ++edit %% | 0d_ | diffthis
58 \ | wincmd p | diffthis
59endif
60
61
62# Issue: #11307 and #11560
63
64# This is what we call " blah