-
Notifications
You must be signed in to change notification settings - Fork 26
/
HyperClick.sublime-settings
179 lines (177 loc) · 6.04 KB
/
HyperClick.sublime-settings
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
// Enable and tweak the inline annotations
"annotation_found_text": "→",
"annotation_not_found_text": "×",
"annotations_enabled": true,
// HyperClick is enabled when the current scope matches any of selectors
"selectors": [
"embedding.php",
"source.css",
"source.dart",
"source.jinja2",
"source.js",
"source.jsx",
"source.jstl",
"source.less",
"source.lua",
"source.nunjucks",
"source.sass",
"source.scss",
"source.stylus",
"source.sugarss",
"source.ts",
"source.tsx",
"text.html",
"text.html.smarty",
"text.html.twig",
"text.pug",
"text.sugarml",
],
// Supported languages
// - each has at least a regex to match import statements
// - to support import statements without file extions, specify a list of valid extensions
// - for some languages we support imports from vendor directories, e.g. node_modules
// - aliases map something short in the import statement (e.g. "@") to a path in your project
// - HyperClick will also search in lookup_paths, which is particularly useful in project settings
"scopes": {
"source.js | source.jsx | source.ts | source.tsx": {
"regexes": [
"^import\\s+['\"](.+)['\"];?$",
".*from\\s+['\"](.+)['\"];?$",
".*require\\(['\"`](.+?)['\"`]\\).*",
".*import\\((?:\\/\\*.+?\\*\\/\\s+)?['\"`](.+)['\"`]\\)(?:[;\\.,])?",
],
"extensions": ["ts", "js", "tsx", "jsx", "vue", "mjs", "svelte"],
"vendor_dirs": ["node_modules"],
"lookup_paths": [],
"aliases": {}
},
"source.sass | source.scss": {
"regexes": [
"^@import\\s+['\"](.+)['\"];?$",
"^@(?:use|forward)\\s+(?:\/\\*.+?\\*\/\\s+)?['\"](.+)['\"].+;?$",
"^@include meta\\.load-css\\(['\"](.+)['\"]\\);?$"
],
"extensions": ["scss", "sass"],
"vendor_dirs": ["node_modules"],
"lookup_paths": [],
"aliases": {}
},
"source.less": {
"regexes": [
"^@import\\s+\\(?.*\\)?\\s*['\"](.+)['\"];?$"
],
"extensions": ["less"]
},
"embedding.php": {
"regexes": [
"\\binclude\\s*\\(?['\"](.+)['\"]\\)?;?$",
"\\binclude_once\\s*\\(?['\"](.+)['\"]\\)?;?$",
"\\brequire\\s*\\(?['\"](.+)['\"]\\)?;?$",
"\\brequire_once\\s*\\(?['\"](.+)['\"]\\)?;?$"
],
"extensions": ["php"]
},
"source.stylus": {
"regexes": [
"^@import\\s+['\"](.+)['\"];?$"
],
"extensions": ["styl", "stylus"]
},
"text.html.basic": {
"regexes": [
".*?<link\\s+rel=\"import\"\\s+href=['\"](.+)['\"]/?>"
],
"extensions": ["htm", "html"],
"vendor_dirs": ["node_modules"]
},
"text.html.jstl": {
"regexes": [
"(<([\\w-]*)\\:([\\w-]*))",
],
"extensions": ["jsp", "tag"],
"jstl": ["WEB-INF"],
"lookup_paths": [
"taglib *prefix ?= ?[\"'](.*)[\"'] *tagdir ?= ?[\"'](.*)[\"']",
"xmlns:(\\w*)=[\"']urn:jsptagdir:(.*?)[\"']"
]
},
"source.css": {
"regexes": [
"^@import\\s+['\"](.+)['\"].*?;$",
"^@import\\s+url\\(['\"](.+)['\"]\\).*?;$"
],
"extensions": ["css", "pcss"]
},
"text.pug": {
"regexes": [
"^include\\s+(.+)$",
"^extends\\s+(.+)$"
],
"extensions": ["pug", "jade"]
},
"source.sss": {
"regexes": [
"^@import\\s+['\"](.+)['\"]$"
],
"extensions": ["sss"]
},
"source.sugarml": {
"regexes": [
"^include\\(src=['\"]\/?(.+)['\"]\\)$",
"^extends\\(src=['\"]\/?(.+)['\"]\\)$",
],
"extensions": ["sgr"]
},
"text.html.nunjucks": {
"regexes": [
"^{%\\s+extends\\s+['\"](.+)['\"].*?%}$",
"^{%\\s+include\\s+['\"](.+)['\"].*?%}$",
"^{%\\s+import\\s+['\"](.+)['\"].*?%}$",
"^{%\\s+from\\s+['\"](.+)['\"]\\s+import.*?%}$"
],
"extensions": ["njk", "nunjucks", "njs", "html"]
},
"source.jinja2": {
"regexes": [
"^{%\\s+extends\\s+['\"](.+)['\"].*?%}$",
"^{%\\s+include\\s+['\"](.+)['\"].*?%}$",
"^{%\\s+import\\s+['\"](.+)['\"].*?%}$",
"^{%\\s+from\\s+['\"](.+)['\"]\\s+import.*?%}$"
],
"extensions": ["j2"]
},
"text.html.twig": {
"regexes": [
"^{%\\s+(?:embed|extends|include|import|use)\\s+['\"]([^{]+)['\"]",
"^{%\\s+from\\s+['\"]([^{]+)['\"]",
"^{%\\s+.+?\\s+with\\s+['\"]([^{]+)['\"]",
"^{{\\s+include\\(['\"]([^{]+)['\"].*?$"
],
"extensions": ["twig"],
"lookup_paths": ["templates", "views"]
},
"source.dart": {
"regexes": [
"^import\\s+['\"](.+)['\"].*?;$",
"^export\\s+['\"](.+)['\"].*?;$",
],
"extensions": ["dart"]
},
"text.html.smarty": {
"regexes": [
"^.*{include\\s+file=['\"]([^'\"]+)['\"].*?}.*$",
"^.*{extends\\s+file=['\"]([^'\"]+)['\"].*?}.*$"
],
"extensions": ["smarty"]
},
"source.lua": {
"regexes": [
".*require\\(['\"](.+?)['\"]\\).*",
".*require.*['\"](.+?)['\"].*"
],
"lookup_paths": ["."],
"extensions": ["lua"]
}
}
}