Can the excessively limited "Recent Items" list be adjusted to include more document types?

Recent Items under the Apple menu or in the Dock could be an excellent way to quickly access files that you have been working with recently. Alas, it's functionality is destroyed by obvious document file types not being included in the list. If you open a PDF it's included, if you open a Word file it's not. That makes no sense.

enter image description here You can see in the picture above that even though Office applications have been included in the recent list, the actual documents (.doc[x], .ppt[x], .xls[x]) that were opened have not.

Is there a way to adjust the file type list to go into Recent Items/Documents to a useful set of document types?


Solution 1:

This problem has been fixed in OS X version 10 / Yosemite or possibly earlier. Now, Office files are listed in the recent file category as they should be (see below).Yosemite Recent Items menu

Solution 2:

Another way to try it is to set the recent items list to zero, so it shows nothing, ever. You can do this in Terminal.

In Terminal:

defaults write NSGlobalDomain NSRecentDocumentsLimit 0

Normally that's a 20. just set the default to zero and you shouldn't see anything in recent items.

For an application-specific change (for instance, Safari) use this command:

defaults write com.apple.safari NSRecentDocumentsLimit 0

Replace com.apple.safari with the proper wording for the app you wish to modify, like vlc or flipplayer or whatever.

To reset default values, type:

defaults delete com.apple.app_name NSRecentDocumentsLimit

to remove the application-specific setting, or

defaults write NSGlobalDomain NSRecentDocumentsLimit 20

to set the global value back to 20 (or whatever you want)