-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathn_triples.tmLanguage
More file actions
108 lines (108 loc) · 2.42 KB
/
n_triples.tmLanguage
File metadata and controls
108 lines (108 loc) · 2.42 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
<?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>nt</string>
</array>
<key>name</key>
<string>N-Triples</string>
<key>patterns</key>
<array>
<dict>
<key>comment</key>
<string>URI</string>
<key>match</key>
<string><[^<>"{}|^`\]\\]*></string>
<key>name</key>
<string>string.uri.ntriples</string>
</dict>
<dict>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>string.ntriples</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>keyword.operator.ntriples</string>
</dict>
<key>3</key>
<dict>
<key>name</key>
<string>support.type.ntriples</string>
</dict>
</dict>
<key>comment</key>
<string>Typed literal</string>
<key>match</key>
<string>("[^"]*")(\^\^)(<[^<>"{}|^`\]\\]*>|\w*:[^\s)]+)</string>
<key>name</key>
<string>literal.ntriples</string>
</dict>
<dict>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>constant.language.sparql</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>entity.name.class.sparql</string>
</dict>
</dict>
<key>comment</key>
<string>Blank node</string>
<key>match</key>
<string>(_:)([^\s]+)</string>
<key>name</key>
<string>constant.complex.sparql</string>
</dict>
<dict>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>constant.other.ntriples</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>keyword.operator.ntriples</string>
</dict>
<key>3</key>
<dict>
<key>name</key>
<string>support.type.ntriples</string>
</dict>
</dict>
<key>comment</key>
<string>String literal</string>
<key>match</key>
<string>("(?:(?:[^\x22\x5C\xA\xD])|\\[tbnrf\"'])*")(@[a-zA-Z-]+)?</string>
<key>name</key>
<string>constant.other.ntriples</string>
</dict>
<dict>
<key>comment</key>
<string>Comments</string>
<key>match</key>
<string>#.*$</string>
<key>name</key>
<string>comment.line.number-sign.sparql</string>
</dict>
</array>
<key>scopeName</key>
<string>source.ntriples</string>
<key>uuid</key>
<string>f382d2fb-f67f-44c2-a190-83d7298960d9</string>
</dict>
</plist>