-
Notifications
You must be signed in to change notification settings - Fork 46
/
dired.hidden-tmLanguage
127 lines (122 loc) · 3.72 KB
/
dired.hidden-tmLanguage
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>dired</string>
<key>scopeName</key>
<string>text.dired</string>
<key>uuid</key>
<string>638375b8-3509-4d37-a8d8-afad7a95b428</string>
<key>fileTypes</key>
<array>
<string>dired</string>
</array>
<key>patterns</key>
<array>
<dict>
<key>match</key>
<string>^(\s*)([▸▾] )([^\\/]*)(\\|/)?(.*)?$</string>
<key>name</key>
<string>dired.item.directory</string>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>indent</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>punctuation.definition.directory.symbol.dired</string>
</dict>
<key>3</key>
<dict>
<key>name</key>
<string>string.name.directory.dired</string>
</dict>
<key>4</key>
<dict>
<key>name</key>
<string>punctuation.definition.directory.slash.dired</string>
</dict>
<key>5</key>
<dict>
<key>name</key>
<string>string.error.dired</string>
</dict>
</dict>
</dict>
<dict>
<key>match</key>
<string>^(\s*)(≡ )(\S.*?(\.[^\.\n]+)?)$</string>
<key>name</key>
<string>dired.item.file</string>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>indent</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>punctuation.definition.file.symbol.dired</string>
</dict>
<key>3</key>
<dict>
<key>name</key>
<string>string.name.file.dired</string>
</dict>
<key>4</key>
<dict>
<key>name</key>
<string>string.name.file.extension.dired</string>
</dict>
</dict>
</dict>
<dict>
<key>match</key>
<string>^⠤(\s*\[.+\]){0,1}$</string>
<key>name</key>
<string>dired.item.parent_dir</string>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>punctuation.definition.rename_mode.dired</string>
</dict>
</dict>
</dict>
<dict>
<key>begin</key>
<string>(\S(.+)?$)</string>
<key>end</key>
<string>^(—+)(\[RENAME MODE\]){0,1}(—*)\n</string>
<key>name</key>
<string>header.dired</string>
<key>endCaptures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>punctuation.definition.separator.dired</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>punctuation.definition.rename_mode.dired</string>
</dict>
<key>3</key>
<dict>
<key>name</key>
<string>punctuation.definition.separator.dired</string>
</dict>
</dict>
</dict>
</array>
</dict>
</plist>