10

I want to change the font size for editing in brackets from the default size to 16pt.

I go to view--> theme--> edit font size to 16pt or another size, but it doesn't change.

4castle
  • 32,613
  • 11
  • 69
  • 106
Hoang
  • 155
  • 1
  • 2
  • 7

6 Answers6

13

Go to view->themes->fontsize

it works

sree lakshmi
  • 131
  • 1
  • 3
12

Try the keyboard shortcut Ctrl++

jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
mkmp
  • 142
  • 2
  • 9
8

I. EDITOR FONT

  1. run brackets as admin (sudo brackets or in win right click...)
  2. Debug -> Open preference file -> ctrl+f "size"
  3. Save both files -> go to view--> theme and there is changed font size

II. brackets UI (menu fonts) too Small on Ubuntu 16.04 64 bit

See https://github.com/1beb/ui-too-small - it works for me.

1

Go to Brackets>view >then select increase or decrease font size from dropdown menu. Continue until you get the size font you want. To see your changes go to Brackets>view>themes

Sonya
  • 11
  • 1
1

Like previously mentioned, you can achieve this with the ui-too-small plugin.
Personally I don't like the default settings of this plugin either but you can change the setting by editing the main.js file which you can find by navigating to:

Help > Show Extensions Folder > Navigate to user > Navigate to ui too small > open main.js

I personally like the following settings (Material Design):

    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: 16px !important;"+
    " line-height: 30px !important; }"+
    ".sidebar li { min-height: 30px !important;}"+
    ".sidebar-selection, .filetree-selection { min-height: 30px !important; margin-top: 5px;}"+
    ""+".jstree-icon{margin-top:10px !important} .filetree-selection-extension{margin-top: 5px; height: 30px !important;} .jstree-rename-input{ margin-top: 2px !important; height: 30px !important;   padding-bottom: 0px !important;} "
    );
    });
Luhn
  • 706
  • 6
  • 15
0

View -> Theme -> Font-size: '24px'.
If you don't write px at the end, it will not accept.
Good luck!

סטנלי גרונן
  • 2,917
  • 23
  • 46
  • 68
firatinlkc
  • 30
  • 6