-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmmet.sublime-settings
46 lines (37 loc) · 1.1 KB
/
Emmet.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
// Custom snippets definitions, as per https://github.com/emmetio/emmet/blob/master/snippets.json
{
// Disables PyV8 auto-update. Useful for users who installed PyV8
// manually from https://github.com/emmetio/pyv8-binaries because
// of local proxy restrictions
// "disable_pyv8_update": true,
// Use old Tab handler to expand abbreviations.
// With this option enabled, editor may better handle Tab key
// (especially with other plugins that overrides Tab key),
// but will spit "slow plugin" message
"use_old_tab_handler": true,
//Snippets
"snippets": {
"variables":{
"lang": "pt-BR",
"locale" : "pt-BR"
},
"css": {
"filters": "html",
"snippets": {
"bg+": "background:${1:transparent} url(${2}) ${3:0} ${4:0} ${5:no-repeat};",
"wza": "width:0 auto;"
}
}
},
// Emmet preferences
// List of all available preferences:
// http://docs.emmet.io/customization/preferences/
"preferences": {
},
// Output profiles for syntaxes
// http://docs.emmet.io/customization/syntax-profiles/
"syntaxProfiles": {
// Enable XHTML dialect for HTML syntax
// "html": "xhtml"
}
}