Hi everyone, last friday I spent some 20mins on improving the debugging experience (at least for me) by doing to following: - removed many "core" message sends from the context stack in the debugger - automatically expand the context stack if the last stackframe is selected For the first task I added a method which filters out all message sends which IMO are mostly uninteresting when debugging (right now still a but dirty implemented..): - #ifTrue: #ifFalse.... and so forth - iteration internals on Collections: #do: - Message sends to Blocks / MethodContexts: #on:do: #value: ... - Basic accessors on dicts: #at: #at:put: .... at least for me this helps me incredibly with locating important pieces of code in the debugger e.g. reducing the noise.. So is there any interest in this to be added? (of course with a settings switch to turn it on/off... in case you work on the filtered messages) If so I will implement it a bit cleaner and add a decent settings entry... cami