Diogo Cardoso
Diogo Cardoso

Reputation: 22277

IDE with syntax highlight support for LESS

Is there any IDE with syntax highlight support for LESS?

Upvotes: 26

Views: 13276

Answers (9)

Maxence
Maxence

Reputation: 13388

Here is an Eclipse plugin for LESS : http://www.normalesup.org/~simonet/soft/ow/eclipse-less.fr.html

Upvotes: 1

Celmaun
Celmaun

Reputation: 24762

JetBrains PHPStorm has built-in support for LESS :)

Upvotes: 7

Aximili
Aximili

Reputation: 29484

I just tried Crunch and I like it.
It has syntax highlighting (but no intellisense) and can save as .css.

It requires Adobe AIR.

Upvotes: 0

ZdenekD
ZdenekD

Reputation: 246

Sublime Text. It's good lightweight editor.

Upvotes: 2

M. Ahmad Zafar
M. Ahmad Zafar

Reputation: 4939

You can use Komodo IDE or Edit for this purpose. It has an add-on named LESS

Upvotes: 0

user587504
user587504

Reputation: 51

You could use Netbeans plugin for LESS.

In Netbeans 6.9: tools-> Available Plugins-> LessCSS Module

Version: 1.0.6 Source: Plugin Portal
Plugin Description This module is to allow for tighter integration of netbeans with LessCSS (using the LessPHP standard).

Upvotes: 5

bzx
bzx

Reputation: 1364

Eclipse does not support .less fully (nested rules, single line comments, etc) but you can at least configure it so that it would open .less files and treat them as .css.

Preferences > General > Content Types: find "CSS" entry and add .less extension.

Then, Preferences > General > Editors > File Assoc: add .less extension and associate with CSS editor.

Better than nothing, especially if you're into Eclipse world ;)

Upvotes: 36

Jonathan Miller
Jonathan Miller

Reputation: 1786

If you use Textmate there is a syntax highlighting bundle for LESS:

https://github.com/appden/less.tmbundle

Upvotes: 1

hammar
hammar

Reputation: 139930

Syntax highlighting for LESS is included in the newest version of rails.vim.

Upvotes: 0

Related Questions