Algernon is a productivity tool for Squeak programmers; your personal assistant for Squeak. Algernon aims to make programming in Squeak faster and more keyboard centric. It provides lightning quick access to the core functionalities (classes, methods, morphs, tests, repositories ...) and even gives you a quick way to evaluate Smalltalk expressions.
-
Make sure you have metacello-work installed.
-
Load the project by running the following in your workspace:
Metacello new
baseline: 'Algernon';
repository: 'github://HPI-SWA-Teaching/Algernon-Launcher:master/packages';
onConflict: [:ex | ex allow];
load
- Activate the panel in the preferences:
Tools > Preferences > Algernon
- Now you can toggle the Algernon panel using:
Alt + Space
Control | Action |
---|---|
Alt + Space | Show Algernon |
Esc | Hide Algernon |
Arrow up | Navigate up |
Arrow down | Navigate down |
Arrow right | Navigate in |
Arrow left | Navigate out |
Enter | Run selected item |
- Search using fuzzy matching
- Search and open categories, classes and methods
- Explore and inspect classes and methods
- Run tests
- Open and save repositories
- Search preferences
- Search morphs
- Search global variables
- Print and evaluate Smalltalk expressions (e.g. enter
= 2*3
) - Action verbs for filtering and quick access (e.g.
run SomeTest
will only search for tests and set a default action)
Credits to Erik Hinterbichler and Joey Hagedorn, the original creators of Algernon.