Thursday, January 9, 2003

More Safari

Yesterday’s keynote had lots of good announcements, but Safari is still the one I find the most exciting. It renders fast and renders well. The user interface, though still beta, is easily the best of Apple’s recent applications. It takes a lot of thought to figure out what to take away to make it simpler, and Apple has done that. Yet Safari still has almost all the important stuff. It does bookmarks and the history right. Sure, these are standard, boring features, but Safari is way ahead of Chimera and OmniWeb here. Same with the Status Bar and dragging links around; in fact, with these two I think it’s broken new ground. Plus, it’s got pop-up blocking, and the SnapBack feature is actually useful.

Like iCab, Safari’s Find feature isn’t forgetful, and amazingly the Find Previous command’s shortcut is the Mac-standard Command-Shift-G, rather than the Command-D that many Cocoa applications use. A list of Safari keyboard shortcuts is available in an HTML file inside the application package. (You must have Safari installed in the top-level Applications folder for the link to work.)

Apple did a wonderful job of keeping Safari’s preferences lean. Almost everything important is there, although there are a few other preferences I wanted to be able to set. Fortunately, Safari has preferences beyond those exposed in its user interface. Using F-Script Anywhere:

> (NSUserDefaults standardUserDefaults) dictionaryRepresentation

I was able to get a list of Safari’s preferences. The interesting ones I found were:

WebKitHistoryAgeInDaysLimit = 7;
WebKitHistoryItemLimit = 1000;
WebKitMinimumFontSize = 9; 
WebKitCursiveFont = "Apple Chancery"; 
WebKitFantasyFont = Papyrus;
WebKitSansSerifFont = "Lucida Grande"; 
WebKitSerifFont = "Times New Roman";

To set one of these preferences, you can use Terminal and the defaults command. For instance, to raise the minimum font size:

defaults write com.apple.Safari WebKitMinimumFontSize 12

Overall, I’m very happy with Safari. It’s remarkably solid and polished for a beta. Of course, there are some things I wish it did better, and which I will be suggesting to Apple:

For now, I’m trying Safari as my default browser. It is the only browser to tempt me away from iCab since I switched from IE. Of course, I’ll probably still need to keep IE and Netscape around for the few odd pages that only work in one of those browsers.

See also:

2 Comments RSS · Twitter

Scott J. Kramer

FYI, the "Scot Hacker on bookmarks" link lands on a page about the monowheel. :-)

Fixed, thanks.

Leave a Comment