Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make VS code stop adding and inserting characters

VS code likes thinking for me, which is the number 1 sin a text editor can do. To "help" it will auto type [] and {}, when deleting it will also delete [] instead of just ]. When typing HTML it also tries to auto add </div> at the wrong time...

99% of the time when it adds a character I didn't add myself it creates issues. How can I turn that feature off? i.e if I didn't explicitly press a key to modify a character, VS code has no business touching that character.

like image 481
Makogan Avatar asked Oct 16 '25 20:10

Makogan


1 Answers

Open the Settings menu (Ctrl , on Windows or File -> Preferences -> Settings).

Select Text Editor.

You can selectively disable Auto Closing Brackets, Auto Closing Quotes, and other editor options.

like image 166
Chris Allwein Avatar answered Oct 18 '25 15:10

Chris Allwein