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

Summary: Autocompletion for imported LESS files does not work with absolute paths
Product: web Reporter: bennyn
Component: CSS EditorAssignee: Milutin Kristofic <mkristofic>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.0.1   
Hardware: PC   
OS: Windows 8 x64   
Issue Type: DEFECT Exception Reporter:

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";