From 1a0c1288e16e97fc78a46e9a26acd0627976127f Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Tue, 10 May 2016 09:06:47 +0900 Subject: [PATCH] Fixes #329 --- autoload/emmet/lang/html.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/emmet/lang/html.vim b/autoload/emmet/lang/html.vim index 187ba8d..ecba5d7 100644 --- a/autoload/emmet/lang/html.vim +++ b/autoload/emmet/lang/html.vim @@ -353,6 +353,8 @@ function! emmet#lang#html#parseIntoTree(abbr, type) abort let last = parent let last.pos += 1 endif + elseif n =~ '^*[0-9]\+$' + let last.child[-1].multiplier = 0 + n[1:] elseif len(n) let cl = last.child let cls = []