vtst / ow

Various Eclipse plugins for web development
http://www.normalesup.org/~simonet/soft/
74 stars 29 forks source link

Scan less files for imports #190

Closed dtrunk90 closed 10 years ago

dtrunk90 commented 10 years ago

Example: main.less

@import "variables";
@import "core";

variables.less

@font-color: "black";

core.less

body {
    color: @font-color;
}

Now Eclipse complains about the variable used in core.less: The variable '@font-color' is undefined in this context.

This is theoretically correct, but practically wrong. Maybe scanning imported less files would fix it?

DaSchTour commented 10 years ago

Practically this is also correct, just the eclipse plugin doesn't recognize it!

vtst commented 10 years ago

This is the same as #147.