Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been using LESS and I find it very useful

I would like to have CSS syntax highlight in Vim with all .less files.

Any suggestions?

share|improve this question

5 Answers

up vote 23 down vote accepted

http://leafo.net/lessphp/vim/

Check the INSTALL file for instructions.

share|improve this answer

There are also a couple of github repos:

share|improve this answer
2  
groenewege/vim-less is working better for me than lunaru's and lessphp's. – Jo Liss Nov 21 '11 at 3:16

If you only want to use Vim's syntax highlighting, then you can set the filetype of every LESS file to be a CSS file.

To do this, you can add au BufNewFile,BufRead *.less set filetype=css to your .vimrc file.

au stands for autocommand, so the above line reads "on events BufNewFile or BufRead, if the file has a less extension, then set the filetype option to css".

Keep in mind that this is not the recommended way. According to the Vim tips Wiki:

If there is a new file extension that you want Vim to recognize, don't muck about with augroup in your .vimrc, put the settings in the right place. See :help ftdetect

share|improve this answer
The other reason not to do this is that there are aspects of less that vim's css syntax highlighting (correctly) considers wrong - for example nested curly braces – pho79 Aug 30 '12 at 19:54

Paste this line into your .vimrc:

au BufRead,BufNewFile *.less setfiletype css

au is a shorthand for autocmd. So this reads as "when I read or open a new file that ends in .less, automatically set the filetype as CSS".

share|improve this answer

Here is is solution for this

http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=2756522#

share|improve this answer
The OP is asking for syntax highlighting in vim, and your answer relates to syntax highlighting in Dreamweaver... – Lea Cohen Oct 20 '12 at 21:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.