aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorsmihica <smihica@gmail.com>2013-05-04 18:08:29 +0900
committersmihica <smihica@gmail.com>2013-05-04 18:08:29 +0900
commit976449a2d5e28b731e848aa22dab38a05a39ecc1 (patch)
tree1672623eb62d7e9854fa10efdd06b0fbfe346f29 /tools
parent60fa9d893bc9f4372dbb7563ba13a279e7d59212 (diff)
downloademmet-mode-976449a2d5e28b731e848aa22dab38a05a39ecc1.tar.lz
emmet-mode-976449a2d5e28b731e848aa22dab38a05a39ecc1.tar.xz
emmet-mode-976449a2d5e28b731e848aa22dab38a05a39ecc1.zip
Added css vendor-prefix support. (http://docs.emmet.io/css-abbreviations/vendor-prefixes/)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/json2hash4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/json2hash b/tools/json2hash
index e8fa4f3..0accbcd 100755
--- a/tools/json2hash
+++ b/tools/json2hash
@@ -32,11 +32,11 @@ class Processor(object):
self.out.write(' tbl)\n')
self.out.write('tbl)')
elif _type is list:
- self.out.write('(list \n')
+ self.out.write('(vector \n')
for v in data:
self._print(v)
self.out.write('\n')
- self.out.wirte(')\n')
+ self.out.write(')\n')
elif (_type is str or _type is unicode):
self.out.write(pystr2elstrexp(data))
else: # number ?