emmetio / livestyle-sublime-old

Live bi-directional CSS edit of new generation
http://livestyle.emmet.io
260 stars 23 forks source link

Unexplained failure code #70

Open RatVaMP opened 11 years ago

RatVaMP commented 11 years ago

Worked 1 hour - all is fine but after...

Code: .header-btn { left: 0px; top: 0px; } .header-btn_close { ... } For example I must change left:0px to 10px; and top:0px to 10px; When i change any of this params dot from edited class moving to next class and param changing. Result: header-btn { left: 10px; top: 0px; } ||||| dot lost and "left: 10px" (its OK) ||||| ..header-btnclose { ... } ||||| two dots ||||| Now i'm trying to change top (second param). Old line header-btn { left: 10px; top: 0px;; } ||||| "top" still 0px but added second ; ||||| And added new line. .header-btn { ''top: 10px;; } ||||| double ;; and '_' |||||

After two changes my code in ST3 changing from .header-btn { left: 0px; top: 0px; } .header-btn_close { ... } to header-btn { left: 10px; top: 0px;; } ..header-btn_close { ... } .header-btn { '*'top: 10px;; }

No matter what param you change. First change move dot, second create new line... P.S. '*' in code without quotes.

--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/1267520-unexplained-failure-code?utm_campaign=plugin&utm_content=tracker%2F305388&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F305388&utm_medium=issues&utm_source=github).
sergeche commented 11 years ago

Do you have UTF BOM in your file?

RatVaMP commented 11 years ago

UTF-8 (without BOM)