Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add syntax highlighting to .less-files in NetBeans

I want to have files with a .less extension use the CSS syntax highlighting in NetBeans, and I don't have any clue how to do this.

I found a rather time consuming way to do this (http://netbeans.dzone.com/tips/quickstart-guide-language-supp), but it hit me that it must be easier way to do this.

Anyone knows?

like image 999
Rasmus Avatar asked Jul 06 '10 20:07

Rasmus


3 Answers

You just have to add a new file type in Netbeans > Tools > Options > Miscellaneous > Files. Note that Netbeans will mark as errors some less features like variables...etc

like image 98
Maxence Avatar answered Nov 13 '22 23:11

Maxence


a module which adds full less highlighting support can be downloaded from the following page: http://plugins.netbeans.org/plugin/32782/lesscss-module

i tested the module with netbeans 7.0 and it worked flawless.

like image 11
c33s Avatar answered Nov 13 '22 22:11

c33s


You might try out the new version of the plugin that was already mentioned:
http://plugins.netbeans.org/plugin/41315/lesscss-module

Github repository, now gone, was available at:
https://github.com/khairie/lesscss-module

For me it seems to work quite fine despite some minor bugs in coloring. It is missing some features and e.g. does not offer automatic formatting, though.

Note that basic editing support for Sassy CSS and LESS CSS preprocessor files has been added to Netbeans dev build:
http://wiki.netbeans.org/NewAndNoteWorthy

like image 6
Hermes Avatar answered Nov 13 '22 22:11

Hermes