Maybe I'm missing something obvious, but if I zero in on a message name in spotter, can I open a browser on all implementors, or only browse one specific method?
Do you need to open it in Implementors/Senders Browser?
Yes. I was fixing mouse wheel user code to handle horizontal wheel events. The Morphic hook is #mouseWheel:, so I wanted a browser on all implementors of #mouseWheel: so that I could view each one and update it if necessary.
As Juraj said, you can Cmd+Shift+ArrowRight to dive in the category and using the preview you can browse the code. If you want the MessageBrowser, there is no way to get it by default.
Laura also asked for this feature before, so I listed below a crude code to add a processor that finds selectors instead of implementors. Just install this method and then start spotting. Let us know if this is better:
actLogic: [ :each | self systemNavigation browseAllImplementorsOf: each ]
Cheers,
Doru
On Tue, Feb 10, 2015 at 9:24 PM, Sean P. DeNigris <[hidden email]> wrote:
Juraj Kubelka wrote > Do you need to open it in Implementors/Senders Browser?
Yes. I was fixing mouse wheel user code to handle horizontal wheel events.
The Morphic hook is #mouseWheel:, so I wanted a browser on all implementors
of #mouseWheel: so that I could view each one and update it if necessary.