Skip to main content
Brackets

Brackets #

Warning: This post hasn't been updated for over a year. The information may be out of date.

What?
brackets-cont/brackets: An open source code editor for the web, written in JavaScript, HTML and CSS.
Why?
For the memory of the good ol’days.

Increase UI size #

1beb/ui-too-small

Usage:

  1. Install UI Too Small from extension manager (FilesExtension Manager…)
  2. HelpShow Extensions Folder
  3. Open /user/ui-too-small/main.js
  4. Change the font and UI sizes
  5. DebugReload With Extensions (or command+R)

My settings:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
define(function (require, exports, module) {
    "use strict";

    var ExtensionUtils = brackets.getModule("utils/ExtensionUtils");

    ExtensionUtils.addEmbeddedStyleSheet("#sidebar *, #main-toolbar *, #titlebar *, #problems-panel *,"+
    "#find-in-files-results *, #e4b-main-panel *, #status-bar *,"+
    "#main-toolbar *, #context-menu-bar *, #codehint-menu-bar *,"+
    "#quick-view-container *, #function-hint-container *  { font-size: 15px !important;"+
    " line-height: 17px !important; }"+
    ".sidebar li { min-height: 17px !important;}"+
    ".sidebar-selection, .filetree-selection { min-height: 20px !important; margin-top: 3px;}"+
    ""
    );
});