Adobe Brackets

From NoskeWiki
Revision as of 01:58, 6 February 2019 by NoskeWiki (talk | contribs) (Created page with "==About== {{DaughterPage|mother=Adobe}} [http://brackets.io/ Brackets] is an open source text editor that understands web design created in JavaScript by Adobe. ==Cust...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

NOTE: This page is a daughter page of: Adobe


Brackets is an open source text editor that understands web design created in JavaScript by Adobe.


Customizing

To change settings you actually have to go Debug > Open Preferences File and it will open two files left and right, you want to modify to brackets.json. Then I believe you have to close and reopen the app.

I don't like they way quotes and brackets are automatically closed so here's something I like to add:

{
  "brackets-eslint.gutterMarks": true,
  "brackets-eslint.useLocalESLint": false,
  "fonts.fontSize": "9px",
  "fonts.fontFamily": "'SourceCodePro-Medium', MS ゴシック, 'MS Gothic', monospace",
  "spaceUnits": 2,
  "linting.collapsed": true,
  "closeBrackets": false
}



The biggest lines I've changed were:

{
  "fonts.fontSize": "9px",
  "closeBrackets": false
}



Original:


{
    "brackets-eslint.gutterMarks": true,
    "brackets-eslint.useLocalESLint": false,
    "fonts.fontSize": "12px",
    "fonts.fontFamily": "'SourceCodePro-Medium', MS ゴシック, 'MS Gothic', monospace"
}

Links