How to autocomplete JSX tags in Sublime Text 3
This guide will show you how to autocomplete or autoclose React JSX and HTML tags in Sublime Text 2 and Sublime Text 3.
MacOS (or OS X)
In the menu bar, navigate to Sublime Text > Preferences > Key Bindings
.
Windows
In the menu bar, navigate to Preferences > Key Bindings
.
Append the following object to the end of the sublime-keymap
array:
{ "keys": ["/"], "command": "close_tag", "args": { "insert_slash": true }, "context":
[
{ "key": "selector", "operator": "equal", "operand": "(text.html, text.xml, meta.jsx.js) - string - comment", "match_all": true },
{ "key": "preceding_text", "operator": "regex_match", "operand": ".*<$", "match_all": true },
{ "key": "setting.auto_close_tags" }
]
},
Save and close the file. You're all done!