One thing I really enjoy is how Emmet can generate HTML using 'CSS-like' strings. However, I prefer not to use their CSS Abbreviations. For example, when I write the following line of CSS:
li a|
I expect to get a tab when I press 'TAB':
li a |
Instead, with Emmet I receive the following output when I press Tab:
li |-webkit-appearance: none;
-moz-appearance: none;
appearance: none
Is there a way to turn off this feature in Emmet?