0
Seeing various tutorials on the internet where they use Sublime Text 3 to edit HTML codes, type ul>li{item}*4
and then Ctrl+Space Sublime completes the code with:
<ul>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
</ul>
I tried to use some plugins and even then the shortcut does not work.
I installed the plugins that are in this question: How to put autocomplete in Sublime Text 3?
Use the Sublime Text 3 Build 3126 on Windows 10.
This is a shortcut generated by Emmet, but by default it is only available in HTML files. You saved the file before trying to insert the shortcut (or changed the syntax with
Ctrl+Shift+P + HTML
)?– Woss
@Andersoncarloswoss, I saved yes and checked that the syntax selected is in the status bar is HTML.
– Laércio Lopes
Restarted editor after installation? Tried pressing
Tab
after typing the shortcut?– Woss
@Andersoncarloswoss, yes, I restarted, I did it on another computer with Windows 7 also and it doesn’t work.
– Laércio Lopes
Try to reinstall the package then. I use this same version and here it works normally. Also confirm that it is installed in
Ctrl+Shift+P + List Packages
.– Woss
@Andersoncarloswoss, I missed the plugin
Ctrl+Shift+P
and thenRemove Package
selected Emmet, rebooted, installed again, waited to download Pyv8, re-entered and nothing... I’m doing something wrong?ul>li{teste}*5
afterwardCtrl+Espaço
that’s right?– Laércio Lopes
Here I use the
Tab
in place ofCtrl+Space
– Woss