Reputation: 444
I am using vscode and it adds a closing bracket or parenthesis if you add the opening bracket or parenthesis but while I use js files or JSX files it doesn't add the closing pair.
Upvotes: 4
Views: 2176
Reputation: 146
You can add:
"[javascriptreact]": {"editor.autoClosingBrackets": "always"}
for JSX files
and
"[javascript]": {"editor.autoClosingBrackets": "always"}
for js files
in the settings.json
Upvotes: 13