1

I hate that VS intellisense tries to autocomplete nested selectors as attributes.

How can I disable just this feature for LESS?

-OR-

How can I disable LESS intellisense entirely?

roydukkey
  • 160

1 Answers1

1

You could try to map the .less extension to a different type of editor to change the Intellisense experience. A valid options could 'Script Editor' or as shown below. (Visual Studio Express 2013)

On the menu, go to

Tools -> Options -> Text Editor -> File Extension

enter image description here

Once you have done the mapping, editing .less files would be just like editing normal source code text files.

MFT
  • 723