Adobe Brackets

From NoskeWiki
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