如何在 Eclipse for Java 文本编辑器中更改字体大小?

发布于 2024-10-16 12:50:14 字数 177 浏览 4 评论 0原文

我刚刚尝试通过以下方式更改 Eclipse 3.6.0 中的字体大小:

常规 → 外观 → 颜色和字体 → Java 编辑器文本字体

但是,字体大小仅在我打开的文件中发生变化。如何更改在 Eclipse 中打开的所有 Java 文件和项目的字体大小?

I have just tried to change my font size in Eclipse 3.6.0 in the following way:

General → Appearance → Colors and Fonts → Java Editor text font

However, the font size only changed in the file I had open. How can I change the font size for all Java files and projects I open in Eclipse?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(18

晚风撩人 2024-10-23 12:50:14

如果您要更改字体大小,但它仅适用于当前打开的文件,那么我怀疑您更改了错误的首选项。

  • 在 Eclipse 工具栏上,选择窗口首选项
  • 设置字体大小,常规外观颜色和字体JavaJava 编辑器文本字体)。
  • 保存首选项。

检查您是否没有针对每个项目的首选项。这些将覆盖顶级首选项。

Eclipse v4.2 (Juno) note

根据下面的注释,该菜单已移至 Eclipse Preferences 菜单(不再命名为 Window 菜单)。

Eclipse v4.3 (Kepler) note

Window 菜单再次启用,即菜单 WindowPreferences

Eclipse2021-12 note

已验证所描述的路径
窗口 → 首选项、常规 → 外观 → 颜色和字体 → Java → Java 编辑器文本字体
仍然是正确的。

注意请务必查看ChandraBhan Singh 的答案,它显示了更改的键绑定字体大小。

If you are changing the font size, but it is only working for the currently open file, then I suspect that you are changing the wrong preferences.

  • On the Eclipse toolbar, select WindowPreferences
  • Set the font size, GeneralAppearanceColors and FontsJavaJava Editor Text Font).
  • Save the preferences.

Check that you do not have per-project preferences. These will override the top-level preferences.

Eclipse v4.2 (Juno) note

Per comment below, this has moved to the Eclipse Preferences menu (no longer named the Window menu).

Eclipse v4.3 (Kepler) note

The Window menu is live again, that is, menu WindowPreferences.

Eclipse 2021-12 note

Verified that the path described
(Window → Preferences, General → Appearance → Colors and Fonts → Java → Java Editor Text Font)
is still correct.

Note Be sure to check out the ChandraBhan Singh's answer, it shows the key bindings to change the font size.

心作怪 2024-10-23 12:50:14

对于 Eclipse Neon

增加
Ctrl +

减少 Ctrl -

eclipse 字体的快捷方式

For Eclipse Neon

To Increase
Ctrl +

To reduce Ctrl -

shortcut for font eclipse

豆芽 2024-10-23 12:50:14

在 Mac 上:

  1. Eclipse 工具栏 Eclipse → 设置命令 + ,(逗号)

  2. 常规外观< /em> → 颜色和字体基本文本字体


  3. 申请

On Mac:

  1. Eclipse toolbar Eclipse → Settings OR Command + , (comma)

  2. GeneralAppearanceColors and FontsBasicText Font

  3. Apply

我偏爱纯白色 2024-10-23 12:50:14

这对我有用:

  1. 在 Eclipse 工具栏上,选择窗口首选项

  2. 设置字体大小(常规外观颜色和字体基本文本字体):

    在此处输入图像描述

  3. 保存首选项。

This worked for me:

  1. On the Eclipse toolbar, select WindowPreferences.

  2. Set the font size (GeneralAppearanceColors and FontsBasicText Font):

    Enter image description here

  3. Save the preferences.

彡翼 2024-10-23 12:50:14
General → Appearance → Colors and Fonts → Java Editor text font

查看图片:

在此处输入图片描述

General → Appearance → Colors and Fonts → Java Editor text font

See the image:

enter image description here

七分※倦醒 2024-10-23 12:50:14

Eclipse-Fonts 扩展将添加用于更改字体大小的工具栏按钮和键盘快捷键。然后,您可以使用 AutoHotkey 来设置 Ctrl + 鼠标滚轮缩放。

在菜单帮助安装新软件...下,粘贴更新 URL (http://eclipse-fonts.googlecode.com/svn/trunk/FontsUpdate/) 到 适用于: 文本中框并按 Enter。展开树并选择 FontsFeature,如下图所示:

Eclipse 扩展安装屏幕截图

完成安装并重新启动 Eclipse。然后您应该会看到 A 工具栏按钮(下图中以红色圈出),并能够使用键盘快捷键 Ctrl + -Ctrl + = 进行缩放(尽管您可能必须先从 Eclipse 取消绑定这些键)。

Eclipse 屏幕截图,字体大小工具栏按钮被圈起来

要获取 Ctrl + 鼠标滚轮 缩放,您可以通过以下脚本使用 AutoHotkey:

; Ctrl + mouse wheel zooming in Eclipse.
; Requires Eclipse-Fonts (https://code.google.com/p/eclipse-fonts/).
; Thank you for the unique window class, SWT/Eclipse.
;
#IfWinActive ahk_class SWT_Window0
    ^WheelUp:: Send ^{=}
    ^WheelDown:: Send ^-
#IfWinActive

The Eclipse-Fonts extension will add toolbar buttons and keyboard shortcuts for changing font size. You can then use AutoHotkey to make Ctrl + mousewheel zoom.

Under menu HelpInstall New Software... in the menu, paste the update URL (http://eclipse-fonts.googlecode.com/svn/trunk/FontsUpdate/) into the Works with: text box and press Enter. Expand the tree and select FontsFeature as in the following image:

Eclipse extension installation screen capture

Complete the installation and restart Eclipse. Then you should see the A toolbar buttons (circled in red in the following image) and be able to use the keyboard shortcuts Ctrl + - and Ctrl + = to zoom (although you may have to unbind those keys from Eclipse first).

Eclipse screen capture with the font size toolbar buttons circled

To get Ctrl + mouse wheel zooming, you can use AutoHotkey with the following script:

; Ctrl + mouse wheel zooming in Eclipse.
; Requires Eclipse-Fonts (https://code.google.com/p/eclipse-fonts/).
; Thank you for the unique window class, SWT/Eclipse.
;
#IfWinActive ahk_class SWT_Window0
    ^WheelUp:: Send ^{=}
    ^WheelDown:: Send ^-
#IfWinActive
手心的温暖 2024-10-23 12:50:14

如果您使用的是 Windows,则要增加字体大小,请尝试使用

CtrlShift+

,要减小字体大小,您可以使用

Ctrl移位-

If you are using Windows then to increase font size try with

CtrlShift+

and for decreasing font size you can use

CtrlShift-

最终幸福 2024-10-23 12:50:14

ctrl + - 减小,按 ctrl > + + 增加字体大小。

它在 Eclipse Oxygen 中对我有用。

Press ctrl + - to decrease, and ctrl + + to increase the Font Size.

It's working for me in Eclipse Oxygen.

孤独岁月 2024-10-23 12:50:14

在此处输入图像描述

菜单窗口首选项常规外观颜色和字体基本文本字体

Enter image description here

Menu WindowPreferences. GeneralAppearanceColors and FontsBasicText Font

许你一世情深 2024-10-23 12:50:14

在 Eclipse 工具栏上,选择窗口首选项,设置字体大小(常规外观颜色和字体基本文本字体)。

保存首选项。

On the Eclipse toolbar, select WindowPreferences, set the font size (GeneralAppearanceColors and FontsBasicText Font).

Save the preferences.

ゝ偶尔ゞ 2024-10-23 12:50:14

你可以看看 Eclipse 颜色主题,它还有很多用于自定义字体、背景的选项颜色等

You can have a look at Eclipse color theme, also which has a hell of a lot of options for customizing font, background color, etc.

剪不断理还乱 2024-10-23 12:50:14
  1. 在菜单栏上,选择窗口首选项
  2. 设置字体大小(常规外观颜色和字体结构化文本编辑器结构化文本编辑器文本字体(设置为默认值:文本字体)编辑... )。
  3. 保存首选项。
  1. On the menu bar, select WindowPreferences
  2. Set the font size (GeneralAppearanceColors and FontsStructured Text EditorsStructured Text Editor Text Font (set to default: Text Font)Edit...).
  3. Save the preferences.
林空鹿饮溪 2024-10-23 12:50:14

运行 Eclipse v4.3 (Kepler),AlvaroCachoperro 概述的步骤可以解决 Java 文本编辑器和控制台窗口文本的问题。

许多文本字体选项,包括 Java 编辑器文本字体注释,都“设置为默认值:文本字体”。可以按如下方式找到并配置“默认值”:

在 Eclipse 工具栏上,选择窗口首选项。深入了解:(常规外观颜色和字体基本文本字体)(位于底部)

  • 单击编辑并选择字体、样式和大小
  • 单击“字体”对话框中的确定
  • 单击“首选项”中的应用对话框进行检查
  • 单击“首选项”对话框中的确定进行保存

Eclipse 将记住当前工作区的设置。

我教编程,并为后面的学生使用较大的字体。

Running Eclipse v4.3 (Kepler), the steps outlined by AlvaroCachoperro do the trick for the Java text editor and console window text.

Many of the text font options, including the Java Editor Text Font note, are "set to default: Text Font". The 'default' can be found and configured as follows:

On the Eclipse toolbar, select WindowPreferences. Drill down to: (GeneralAppearanceColors and FontsBasicText Font) (at the bottom)

  • Click Edit and select the font, style and size
  • Click OK in the Font dialog
  • Click Apply in the Preferences dialog to check it
  • Click OK in the Preferences dialog to save it

Eclipse will remember your settings for your current workspace.

I teach programming and use the larger font for the students in the back.

一片旧的回忆 2024-10-23 12:50:14

我倾向于使用菜单Windows首选项常规外观颜色和字体 > → Java 文本编辑器更改应用

I tend to use menu WindowsPreferencesGeneralAppearancesColors and FontsJava Text EditorsChangeApply.

ˉ厌 2024-10-23 12:50:14

您可以使用

ctrl 和 + 或 - 键

You can use

ctrl and + or - key

鸢与 2024-10-23 12:50:14

我找到了在 Eclipse 中增加字体大小的最佳方法:

遵循以下路径:Eclipse-Folder\plugins\org.eclipse.ui.themes_1.2.100.v20180514-1547\css

--这里有一堆文件,它取决于用户系统要更改哪个文件。

* {
  font-size:13;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
} 

如果您愿意,您甚至可以更改字体系列。

  1. 对于 Windows 用户,在这些文件的底部添加以下 css 片段:
    文件名:e4_default_gtk.css & e4_default_win.css

  2. 对于 Mac 用户:e4_default_mac.css

I Found the best way to increase Font Size in Eclipse:

Follow this path : Eclipse-Folder\plugins\org.eclipse.ui.themes_1.2.100.v20180514-1547\css

--There are a bunch of Files here and it depends on user system which file to change.

* {
  font-size:13;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
} 

you can even change Font Family if you like.

  1. For Windows Users add the following piece of css at BOTTOM of these files:
    File Names: e4_default_gtk.css & e4_default_win.css

  2. For Mac Users: e4_default_mac.css

表情可笑 2024-10-23 12:50:14

尝试 tarlog 插件。您可以通过 Ctrl++ 和 Ctrl-- 命令更改字体。非常方便的一件事。

https://code.google.com/archive/p/tarlog-plugins/下载

Try the tarlog plugin. You can change the font through Ctrl++ and Ctrl-- commands with it. A very convenient thing.

https://code.google.com/archive/p/tarlog-plugins/downloads

不必在意 2024-10-23 12:50:14

如果您使用的是 STS,请转到 STS/Contents/Eclipse 目录并打开 STS.ini 文件。

从 STS.ini 文件中删除地板行:

-Dorg.eclipse.swt.internal.carbon.smallFonts

并重新启动 STS。

If you are using STS, then goto STS/Contents/Eclipse directory and open the STS.ini file.

From the STS.ini file, remove the flooring line:

-Dorg.eclipse.swt.internal.carbon.smallFonts

And restart the STS.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文