Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable antialiasing inside Xcode?

How does one disable antialiasing inside the code editor in Xcode, but not system-wide?

like image 308
Jaime Cham Avatar asked Mar 11 '11 04:03

Jaime Cham


1 Answers

For Xcode 3.x the necessary terminal command is:

defaults write com.apple.xcode AppleAntiAliasingThreshold <some integer value>

For Xcode 4 & 5 it is:

defaults write com.apple.dt.Xcode AppleAntiAliasingThreshold <some integer value>

For Xcode 6 you may first need to enter the following at a terminal console:

defaults write com.apple.dt.Xcode NSFontDefaultScreenFontSubstitutionEnabled YES

Then, as per usual:

defaults write com.apple.dt.Xcode AppleAntiAliasingThreshold <some integer value>

Using AppleAntiAliasingThreshold 24 should get you what you want.

like image 58
Evan Avatar answered Oct 01 '22 13:10

Evan