Brackets is an outstanding code editor.
However, if you’re just learning to code, you will want to discipline yourself to know the syntax without Brackets holding your hand.
To turn off code autocompletion as well as smart indentation, add these preferences to your user preferences file:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Turns off autocompletion and smart indents | |
// Add the following lines to your user preferences json file | |
{ | |
"codehint.AttrHints": false, | |
"codehint.CssPropHints": false, | |
"codehint.SpecialCharHints": false, | |
"codehint.TagHints": false, | |
"codehint.UrlCodeHints": false, | |
"closeBrackets": false, | |
"closeTags": { "whenOpening": false, "whenClosing": false, "indentTags": [] }, | |
"smartIndent": false | |
} |
Thank You ! 🙂