This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 248803 - Autocompletion for imported LESS files does not work with absolute paths
Summary: Autocompletion for imported LESS files does not work with absolute paths
Status: NEW
Alias: None
Product: web
Classification: Unclassified
Component: CSS Editor (show other bugs)
Version: 8.0.1
Hardware: PC Windows 8 x64
: P3 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-11-21 14:22 UTC by bennyn
Modified: 2014-11-21 14:22 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bennyn 2014-11-21 14:22:33 UTC
In my NetBeans HTML5 project I want to see mixins & styles from imported LESS files. To import a LESS file from a parent directory, I use this declaration:

@import "../../../lib/lesshat/lesshat-prefixed.less";

Doing that, gives me the ability to see the mixins (like .lh-align-content) of the imported file when using autocompletion in NetBeans. But when I use an absolute path, then the autocompletion does not work.

Here is an example of including the same file with an absolute path:

@import "/lib/lesshat/lesshat-prefixed.less";