sidney
sidney

Reputation: 827

Sublime Text 2 + Emmet - Expansion doesn't work

I have the Emmet Plugin on Sublime Text 2, and for example, in a CSS file, pressing TAB after:

pos:r

should result in

position:relative

But instead, after the :, the fuzzy search changes completely and disregards whatever was before the :.

This is very similar to this question:

Sublime Text 2 + Emmet - not expanding correctly

, but I have tried adding "disable_tab_abbreviations_on_auto_complete": false in valid JSON format, saved, restarted ST2, but the behaviour is still the same.

Upvotes: 1

Views: 293

Answers (1)

myo
myo

Reputation: 121

Try a couple of things here. They fixed the problem for me:

  1. Save the file in ".css" format
  2. After typing pos:r press Ctrl (Cmd) + E

Hope this helps.

Upvotes: 1

Related Questions