如何在eclipse中禁用抗锯齿

如何在eclipse中禁用抗锯齿,eclipse,macos,antialiasing,Eclipse,Macos,Antialiasing,我的设置是 OSX山狮 java版本“1.7.0_17” eclipse cpp 4.4.1 霹雳显示器 我已尝试在终端中运行: defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 20 甚至 defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 40 每次都重新启动eclipse,但正如您所看到的,我无法摆脱抗锯齿 在下面的图片上 我一直在努力解

我的设置是

  • OSX山狮
  • java版本“1.7.0_17”
  • eclipse cpp 4.4.1
  • 霹雳显示器
我已尝试在终端中运行:

defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 20
甚至

defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 40
每次都重新启动eclipse,但正如您所看到的,我无法摆脱抗锯齿 在下面的图片上

我一直在努力解决这个问题,所以提前非常感谢你的帮助

编辑:在emacs上,抗锯齿功能已完全禁用


从EclipseJuno到EclipseLuna(4.4.1),我遇到了同样的问题。 解决方案“defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 20”适用于Juno,但不适用于Luna

执行:

defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 20
将修改~/Library/Preferences/org.eclipse.eclipse.plist中的属性plist文件,并添加属性“AppleAntiAliasingThreshold”

我注意到安装后,Luna在~/Library/Preferences/org.eclipse.platform.ide.plist中创建了一个新的属性文件

这样做:

defaults write org.eclipse.platform.ide AppleAntiAliasingThreshold 20
重新启动我的操作系统,然后再启动Eclipse Luna,一切都正常了。

希望这有帮助

从EclipseJuno迁移到EclipseLuna(4.4.1)时,我遇到了同样的问题。 解决方案“defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 20”适用于Juno,但不适用于Luna

执行:

defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 20
将修改~/Library/Preferences/org.eclipse.eclipse.plist中的属性plist文件,并添加属性“AppleAntiAliasingThreshold”

我注意到安装后,Luna在~/Library/Preferences/org.eclipse.platform.ide.plist中创建了一个新的属性文件

这样做:

defaults write org.eclipse.platform.ide AppleAntiAliasingThreshold 20
重新启动我的操作系统,然后再启动Eclipse Luna,一切都正常了。

希望这有帮助

在Eclipse Luna的最新版本(20150109-0600)中,这两个版本都已停止对我工作。事实证明,应用程序名称又一次发生了变化——在我的例子中是
epp.package.jee
,因为我有JavaEE版本。独立于版本的方法是使用
-app
选项设置
默认值

defaults write -app /Applications/eclipse/Eclipse.app AppleAntiAliasingThreshold 20

从最新的Eclipse Luna版本(20150109-0600)开始,这两个版本对我来说都停止了工作。事实证明,应用程序名称又一次发生了变化——在我的例子中是
epp.package.jee
,因为我有JavaEE版本。独立于版本的方法是使用
-app
选项设置
默认值

defaults write -app /Applications/eclipse/Eclipse.app AppleAntiAliasingThreshold 20

我无法在氧气和更高版本上使用此选项,但除了您的答案之外,还可以设置
defaults write-g nsfontdaultscreensfontsubstitutionenabled-bool YES
。字体为SourceCodePro常规字体。只需重新启动Eclipse.app-无需重新启动Mac或重新登录。我无法在Oxygen和更高版本上使用此功能,但除了您的答案外,设置
defaults write-g nsfontdaultScreenFontSubstitutionEnabled-bool YES
。字体为SourceCodePro常规字体。只需重新启动Eclipse.app-无需重新启动Mac或重新登录。