-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathduckyscript.tmLanguage
More file actions
120 lines (120 loc) · 2.91 KB
/
duckyscript.tmLanguage
File metadata and controls
120 lines (120 loc) · 2.91 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>
<array>
<string>ds</string>
<string>dscript</string>
<string>ducky</string>
</array>
<key>name</key>
<string>DuckyScript</string>
<key>patterns</key>
<array>
<dict>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>comment.line.character</string>
</dict>
</dict>
<key>comment</key>
<string>Comment keyword.</string>
<key>match</key>
<string>REM (.*)</string>
<key>name</key>
<string>keyword.other.duckyscript</string>
</dict>
<dict>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>keyword.other.duckyscript</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>string.unquoted.duckyscript</string>
</dict>
</dict>
<key>comment</key>
<string>String keyword.</string>
<key>match</key>
<string>(STRING) (.*)</string>
</dict>
<dict>
<key>comment</key>
<string>Keywords.</string>
<key>match</key>
<string>ENTER|DEFAULT_DELAY|DEFAULTDELAY|DELAY|REPLAY</string>
<key>name</key>
<string>keyword.other.duckyscript</string>
</dict>
<dict>
<key>comment</key>
<string>Special keys.</string>
<key>match</key>
<string>WINDOWS|GUI|MENU|APP</string>
<key>name</key>
<string>entity.name.type.duckyscript</string>
</dict>
<dict>
<key>comment</key>
<string>Action keys.</string>
<key>match</key>
<string>CONTROL|CTRL|ALT|SHIFT|INSERT|DELETE|SPACE</string>
<key>name</key>
<string>entity.name.type.duckyscript</string>
</dict>
<dict>
<key>comment</key>
<string>Movement keys.</string>
<key>match</key>
<string>HOME|END|PAGEUP|PAGEDOWN|UPARROW|DOWNARROW|LEFTARROW|RIGHTARROW|UP|DOWN|LEFT|RIGHT|TAB|ESC|ESCAPE</string>
<key>name</key>
<string>entity.name.type.duckyscript</string>
</dict>
<dict>
<key>comment</key>
<string>Lock keys.</string>
<key>match</key>
<string>CAPSLOCK|NUMLOCK|SCROLLOCK</string>
<key>name</key>
<string>entity.name.type.duckyscript</string>
</dict>
<dict>
<key>comment</key>
<string>Function keys.</string>
<key>match</key>
<string>F[1-9][0-2]*</string>
<key>name</key>
<string>keyword.other.duckyscript</string>
</dict>
<dict>
<key>comment</key>
<string>Other keys.</string>
<key>match</key>
<string>PRINTSCREEN|PAUSE|BREAK</string>
<key>name</key>
<string>entity.name.type.duckyscript</string>
</dict>
<dict>
<key>comment</key>
<string>Numerals.</string>
<key>match</key>
<string>[0-9]+</string>
<key>name</key>
<string>constant.numeric.duckyscript</string>
</dict>
</array>
<key>scopeName</key>
<string>source.duckyscript</string>
<key>uuid</key>
<string>cef29f05-079c-40e1-9f2c-84b681946961</string>
</dict>
</plist>