How to turn on Visual Studio 2010 .css Intellisense on .less file

前端 未结 9 878
遇见更好的自我
遇见更好的自我 2020-12-13 01:30

Does anyone know how to enable css intellisense in a non .css file extension? I have a .less file that is basically a .css file but visual studio will not use .css intellis

相关标签:
9条回答
  • 2020-12-13 02:02

    I had to make add a MIME-type to my IIS server like this:

    Extension: .less

    MIME type: text/css

    0 讨论(0)
  • 2020-12-13 02:06

    Nobody has mentioned Web Essentials 2012:

    http://visualstudiogallery.msdn.microsoft.com/07d54d12-7133-4e15-becb-6f451ea3bea6

    0 讨论(0)
  • 2020-12-13 02:08

    I'm really enjoying MindscapeWebWorkbench. It is a free plugin for VS 2010 to provide .less support. In addition the extension came with .Sass and Coffee script support!

    Give a try!

    Ahh, Hanselman approves ;)

    0 讨论(0)
  • 2020-12-13 02:09

    Visual Studio allows you to map custom extensions to the different editors by going to Tools->Options->Text Editor->File Extension. You simply supply the custom extension and select the editor you wish to associate it with. Sadly, the Visual Studio team has seemed to overlook the CSS editor in the list of editors.

    A possible work around is to associate the extension with the Html Editor and then type <html><head><style> in the top of the file and </style></head></html> in the bottom of the file. This will give you CSS intellisense support between the sets of tags. You can then remove the HTML tags and the file association when your done editing.

    0 讨论(0)
  • 2020-12-13 02:09

    This extension provides full Intellisense

    http://visualstudiogallery.msdn.microsoft.com/e646c6ec-87a7-45ea-81e8-d655a3d3e73e

    0 讨论(0)
  • 2020-12-13 02:21

    I highly recommend using Crunch: http://crunchapp.net/

    Visual Studio (Express included) allows you to open Less files with Crunch. True it doesn't open them in Visual Studio, it opens Crunch to edit the file, but there are many reasons to use Crunch anyways. The biggest reason is that Crunch will take your Less code and compile to a pure CSS file. The benefits are that you don't need to include the less.js script in your website, which avoids extra overhead, you can write Less code, and it's as simple as double-clicking your less file in VS, editing the file, then "crunching" (or saving) it over your CSS stylesheet. No need to touch the pure CSS generated by crunch.

    0 讨论(0)
提交回复
热议问题