aboutsummaryrefslogtreecommitdiff
path: root/plugins/editorconfig/tests/glob/brackets.in
blob: f44def283b4e38ba6bcb5cfc64a9af691176ecc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
; test [ and ]

root=true

; Character choice
[[ab].a]
choice=true

; Negative character choice
[[!ab].b]
choice=false

; Character range
[[d-g].c]
range=true

; Negative character range
[[!d-g].d]
range=false

; Range and choice
[[abd-g].e]
range_and_choice=true

; Choice with dash
[[-ab].f]
choice_with_dash=true

; Close bracket inside
[[\]ab].g]
close_inside=true

; Close bracket outside
[[ab]].g]
close_outside=true

; Negative close bracket inside
[[!\]ab].g]
close_inside=false

; Negative¬close bracket outside
[[!ab]].g]
close_outside=false

; Slash inside brackets
[ab[e/]cd.i]
slash_inside=true

; Slash after an half-open bracket
[ab[/c]
slash_half_open=true