diff options
author | smihica <smihica@gmail.com> | 2013-05-18 19:29:51 +0900 |
---|---|---|
committer | smihica <smihica@gmail.com> | 2013-05-18 19:29:51 +0900 |
commit | b388f1ec83b714b0655c62752336441442dd9da2 (patch) | |
tree | a95110d70f830b254b4ad9dc65c5a5ff3ff835ce /conf | |
parent | 4713a355010ff4a51e53470c2e8c101bbdaf177b (diff) | |
download | emmet-mode-b388f1ec83b714b0655c62752336441442dd9da2.tar.lz emmet-mode-b388f1ec83b714b0655c62752336441442dd9da2.tar.xz emmet-mode-b388f1ec83b714b0655c62752336441442dd9da2.zip |
Fixed trivial bugs.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/snippets.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/conf/snippets.json b/conf/snippets.json index 4aadc00..d1e5ae6 100644 --- a/conf/snippets.json +++ b/conf/snippets.json @@ -47,7 +47,7 @@ "animtf:l": "animation-timing-function:linear;", "animtf:cb": "animation-timing-function:cubic-bezier(${1:0.1}, ${2:0.7}, ${3:1.0}, ${3:0.1});", - "ap": "appearance:${none};", + "ap": "appearance:${1:none};", "!": "!important", "pos": "position:${1:relative};", @@ -424,7 +424,7 @@ "tj:d": "text-justify:distribute;", "tj:k": "text-justify:kashida;", "tj:t": "text-justify:tibetan;", - "tov": "text-overflow:${ellipsis};", + "tov": "text-overflow:${1:ellipsis};", "tov:e": "text-overflow:ellipsis;", "tov:c": "text-overflow:clip;", "to": "text-outline:|;", @@ -497,7 +497,7 @@ "fw:b": "font-weight:bold;", "fw:br": "font-weight:bolder;", "fw:lr": "font-weight:lighter;", - "fs": "font-style:${italic};", + "fs": "font-style:${1:italic};", "fs:n": "font-style:normal;", "fs:i": "font-style:italic;", "fs:o": "font-style:oblique;", @@ -550,7 +550,7 @@ "rsz:b": "resize:both;", "rsz:h": "resize:horizontal;", "rsz:v": "resize:vertical;", - "cur": "cursor:${pointer};", + "cur": "cursor:${1:pointer};", "cur:a": "cursor:auto;", "cur:d": "cursor:default;", "cur:c": "cursor:crosshair;", @@ -573,9 +573,9 @@ "pgba:l": "page-break-after:left;", "pgba:r": "page-break-after:right;", "orp": "orphans:|;", - "us": "user-select:${none};", + "us": "user-select:${1:none};", "wid": "widows:|;", - "wfsm": "-webkit-font-smoothing:${antialiased};", + "wfsm": "-webkit-font-smoothing:${1:antialiased};", "wfsm:a": "-webkit-font-smoothing:antialiased;", "wfsm:s": "-webkit-font-smoothing:subpixel-antialiased;", "wfsm:sa": "-webkit-font-smoothing:subpixel-antialiased;", |