… of many things …

… of many things … header image 2

Personal Menu for Squeak

March 12th, 2005 · No Comments

Things I like to have on my Personal Menu in Squeak...

SMALLTALK:
  1. |spaceTallyPath|
  2. spaceTallyPath := FileDirectory default fullPathFor: 'STSpace.text'.
  3. aMenu addLine.
  4. aMenu add: 'SpaceTally [', spaceTallyPath, ']' translated
  5.     target: SpaceTally new
  6.     action: #printSpaceAnalysis.
  7. aMenu add: 'Empty Trash Can' translated
  8.     target: Utilities
  9.     action: #emptyScrapsBook.
  10. aMenu add: 'Clear Command History'
  11.     target: CommandHistory
  12.     action: #resetAllHistory.
  13. aMenu add: 'Collect Garbage'
  14.     target: Smalltalk
  15.     action: #garbageCollect.
  16. aMenu add: 'Flush MC Caches (follow this with a GC)'
  17.     target: MCFileBasedRepository
  18.     action: #flushAllCaches.

PersonalMenu

Tags: Software · Smalltalk

0 responses so far ↓

  • There are no comments yet...Kick things off by filling out the form below.

Leave a Comment