ZenCoding in Vim expands css-properties incorrectly

I am using Vim with ZenCodingI have found a problem occured when expanding abbreviature to a css-propertyIn the documentation it is said that:\[code\].foo{pos:a\[/code\]Might be expanded to:\[code\].foo{position:absolute;\[/code\]While in real life the result is:\[code\] <foo></foo> position:absolute;\[/code\]So the plugin expands all the elements from the start of line, but seems it must to start either from \[code\]{\[/code\] symbol when we write the first rule of selector, either from \[code\];\[/code\] in the other case.What's the problem?
 
Top