A prototype of a new browser for Pharo
You can download the latests Triton image [here] (http://benjamin.is-a-geek.com:9095/job/Triton/lastSuccessfulBuild/artifact/Triton.zip).
With this script you can load Triton in an existing image.
./install_Triton Pharo.image
To open the new browser, simply evaluate:
TritonBrowser new openWithSpec
- Triton shortcuts manager: allow on to redefine any shortcut.
- A smart box for messages sent in the current method
- Text to node popups
- History for Projects
- A cmd+{digit} to reach a box
- Timeline compression
Some shortcuts are already available (even if not documented)
Command+shift+$P
: open the packages listCommand+shift+$C
: open the class listCommand+shift+$T
: open the protocol listCommand+shift+$M
: open the methods listCommand+N, Command+T
: add a new protocolCommand+F, Command+C
: open class finder
To open a button opening a TritonBrowser
ButtonModel new
action: [ TritonBrowser new openWithSpec ];
label: 'Open TritonBrowser';
openWithSpec