Reputation: 1328
div.test
gives me <div class="test"></div>
but
div>div
gives me div><div></div>
.
It is sublime3. It worked before. A long time. Then I installed and removed a lot of packages. In some moment nesting operators stopped working. Maybe somebody faced it.
Upvotes: 0
Views: 183
Reputation: 1328
Found the reason. I didn't notice that in command log (sublime.log_commands(True)) executed another command: insert_best_completion
instead of emmet's command expand_abbreviation_by_tab
.
Emmet failed to start. Because of strange package control loader: 0_package_control_loader.sublime-package
(in Installed Packages directory).
Found solution on https://forum.sublimetext.com/t/solved-emmet-not-working-in-3124/23122
Upvotes: 1