brackets-archive / bracketsIssues

Archive of issues in brackets.
0 stars 0 forks source link

[CLOSED] Can I turn off autocomplete? #10392

Open core-ai-bot opened 3 years ago

core-ai-bot commented 3 years ago

Issue by Wallman93 Saturday Jan 09, 2016 at 09:58 GMT Originally opened as https://github.com/adobe/brackets/issues/12066


Hello, just getting in to html and css coding and I'd like as little help as possible to get into "good" habits. So, I'd like to close my own lines for now.

(apparently code wont show up in github, so I'll type around it) Whenever I type in a paragraph for example, the closing piece shows up right behind it, (/p) <---- like that.

Is there anyway to turn this off? I don't want to get lazy right from the get-go...

Cheers!

Edit: I've gone into the brackets.json and tried to add the closeTags setting, but I can't really get it to work. This is how my .json looks now in its' fully functional state:

{ "fonts.fontSize": "12px", "fonts.fontFamily": "'SourceCodePro-Medium', MS ゴシック, 'MS Gothic', monospace", "livedev.multibrowser": true, "closeBrackets": false, "wordWrap": false, "showLineNumbers": true }

When I add the closeTags, it does not turn purple like the others and whenever I open brackets again it just gives me the .json file and says I have to change it because it's formatted incorrectly. So if anyone know the correct way to set this up, please paste the entire .json file text here with closeTags set on false and I'd be forever grateful.

core-ai-bot commented 3 years ago

Comment by petetnt Saturday Jan 09, 2016 at 11:41 GMT


Make sure that you have the correct parentheses and commas when editing the JSON-file

  1. Open Debug -> Show Preferences File
  2. Go to the "closeBrackets" part
  3. add "closeTags": true, after it. You config should look like this:
{
  "fonts.fontSize": "12px",
  "fonts.fontFamily": "'SourceCodePro-Medium', MS ゴシック, 'MS Gothic', monospace",
  "livedev.multibrowser": true,
  "closeBrackets": false,
  "closeTags": false,
  "wordWrap": false,
  "showLineNumbers": true
}
core-ai-bot commented 3 years ago

Comment by Wallman93 Saturday Jan 09, 2016 at 13:01 GMT


@petetnt Thank you, that worked.

Have a nice day!

core-ai-bot commented 3 years ago

Comment by petetnt Saturday Jan 09, 2016 at 13:21 GMT


@Wallman93 great! :+1: