Sublime Forum

What do you guys use to autocomplete HTML tags in js/jsx files?

#1

I’ve tried Emmet but I can’t seem to make it work. It can autocomplete html tags fine but the issue I have with it is when autocompleting an html attribute, it turns the attribute into a html tag.

For example ( | is the cursor),

Behavior:
<form onSu|></form> -> <onSu></onSu>></form>
Expected
<form onSu|></form> -> <form onSubmit=|></form>

jsx_prefix is already enabled in the settings.

0 Likes