Skip to content

Instantly share code, notes, and snippets.

@data-enhanced
Last active September 21, 2016 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save data-enhanced/b8cc199788a13fd07ad56f99c811c0fe to your computer and use it in GitHub Desktop.
Save data-enhanced/b8cc199788a13fd07ad56f99c811c0fe to your computer and use it in GitHub Desktop.
Brackets Preferences: Turn off autocompletion
// 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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment