Reputation: 24488
When using Sublime Text 2 with Emmet (formerly Zen Coding) inside a script area (for Moustache.js) we lose the quick-codes and kb shortcuts.
The auto complete is replaced the HTML markup in to Javascript snippets, which is understandable since we are inside a <script id="DataTemplate" type="text/html">
when trying to do HTML markup.
Is there to get back Zen coding aka Emmet quick codes while inside a <script>
tag?
Upvotes: 5
Views: 2670
Reputation: 2691
You can use Ctrl+E to expand abbreviations anywhere: https://github.com/sergeche/emmet-sublime#available-actions
Overriding Tab key for <script>
tag (hence, for JavaScript syntax) is not a good idea because it will break your JS snippets and completions.
Upvotes: 10