emmetio / sublime-text-plugin

The essential toolkit for web-developers
https://emmet.io
MIT License
253 stars 29 forks source link

Extra space from config snippets #175

Open kubiqsk opened 2 years ago

kubiqsk commented 2 years ago

Am I doing something wrong?

In my config I have

"config": {
    "css": {
        "snippets": {
            "trr": "transform: rotate(${1:45}deg);",
        }
    }
}

but when this abbreviation expand in the CSS, it looks like this

transform: rotate(45 deg);

the space after 45 is incorrect - it's shouldn't be there