S-Plus has a great object explorer and data editor built into its GUI. It allows you to easily see all the objects in the workspace at a glance, and sort them by name, size, or date.
As far as I'm aware, the only equivalent for R is the object browser in JGR (http://jgr.markushelbig.org/).
Otherwise I just use the search() and ls() commands most of the time (along with grep() when I have a lot of objects).
# trivial example of routine:
search()
utils.list <- ls(pos="package:utils")
utils.list[grep("edit",utils.list)]
Does anyone have any tricks or suggestions for browsing the R workspace? Are there any point-and-click solutions?