mrcrowl / vscode-easy-less

Easy LESS extension for Visual Studio Code
MIT License
67 stars 23 forks source link

Wrong compile #30

Closed MonFig closed 6 years ago

MonFig commented 7 years ago

Will compile calc(100vh - 10vw) into calc(90vh)

gprasanth commented 7 years ago

this is an upstream issue and not an issue of vscode-easy-less itself.

see the following issues:

https://github.com/less/less-docs/issues/441 https://github.com/less/less.js/issues/1880

work around would be to use: calc(~"100vh - 10vw") which gives the intended output.