如何更改括号中的应用程序字体大小
How to change application font size in brackets
如何更改括号中的应用字体大小?
我想把编辑器的侧边菜单、菜单栏、底部栏和标题栏的字体改小。 [ctrl] + [+] 只会改变编辑器的字体大小。
临时修复
File -> Extension Manager -> search for "UI too small" and add an extension to make the font larger.
在 - https://github.com/adobe/brackets/issues/8059 上查找更多详细信息。
正在修复此问题,并将在下一个版本中修复。跟踪进度 - https://trello.com/c/WRhZ0xvj/969-high-dpi-support-on-windows-and-linux.
这对某些人来说很有效,就我而言,UI 反应不灵敏。因此等待新版本。
正如 Shanika 所建议的,"UI too small" 允许您控制 side/Menu fontSize 的大小,但它不响应 Ctr + 或 -。
尽管如此,您仍然可以通过直接更改 Brackets->extensions->user->ui-too-small->main.js
下的 main.js 或单击菜单帮助然后显示扩展文件夹,然后单击 main.js 下的 main.js 来手动执行此操作=20=]。
打开 main.js 并在 font-size: 22px
中更改您想要的字体大小
现在是 5/2019,这仍然是一个问题。
问题于 2014 年打开。
想一想,有一种更流行的代码编辑器,即使你想增加非常小的文件树的字体大小,你也不能没有扩展名(UI 太小了)。
奇怪。
您可以更改 ui-too-small 插件的设置 对于 windows 槽:
帮助 > 显示扩展文件夹 > 导航到用户 > 导航到 ui too small > 打开 main.js
个人比较喜欢以下设置(Material设计):
define(function (require, exports, module) {
"use strict";
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;} "
);
});
如何更改括号中的应用字体大小?
我想把编辑器的侧边菜单、菜单栏、底部栏和标题栏的字体改小。 [ctrl] + [+] 只会改变编辑器的字体大小。
临时修复
File -> Extension Manager -> search for "UI too small" and add an extension to make the font larger.
在 - https://github.com/adobe/brackets/issues/8059 上查找更多详细信息。 正在修复此问题,并将在下一个版本中修复。跟踪进度 - https://trello.com/c/WRhZ0xvj/969-high-dpi-support-on-windows-and-linux.
这对某些人来说很有效,就我而言,UI 反应不灵敏。因此等待新版本。
正如 Shanika 所建议的,"UI too small" 允许您控制 side/Menu fontSize 的大小,但它不响应 Ctr + 或 -。
尽管如此,您仍然可以通过直接更改 Brackets->extensions->user->ui-too-small->main.js
下的 main.js 或单击菜单帮助然后显示扩展文件夹,然后单击 main.js 下的 main.js 来手动执行此操作=20=]。
打开 main.js 并在 font-size: 22px
现在是 5/2019,这仍然是一个问题。
问题于 2014 年打开。
想一想,有一种更流行的代码编辑器,即使你想增加非常小的文件树的字体大小,你也不能没有扩展名(UI 太小了)。
奇怪。
您可以更改 ui-too-small 插件的设置 对于 windows 槽: 帮助 > 显示扩展文件夹 > 导航到用户 > 导航到 ui too small > 打开 main.js
个人比较喜欢以下设置(Material设计):
define(function (require, exports, module) {
"use strict";
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;} "
);
});