By default, the hiding annotations are not initially folded. To make them folded set the toggle:
GtPharoHidingStyler initiallyFolded: true
Now, if you go to this method BrTextEditorNavigator>>#privateMoveCursor:to:
privateMoveCursor: aCursor to: aTextIndex
| anOldCursor |
self
assert: [ aCursor position ~= aTextIndex ]
description: [ 'Can not move a given cursor to the same location' ].
anOldCursor := aCursor copy.
aCursor position: aTextIndex.
self privateUpdateDesiredCoordinate: aCursor.
BlFrameTelemetry
time: [ 'Notify cursor changed {1}' format: { anOldCursor position } ]
during: [ self notifyCursorChanged: anOldCursor ].
BlFrameTelemetry
time: [ 'Notify cursor changed {1}' format: { aCursor position } ]
during: [ self notifyCursorChanged: aCursor ].
BlFrameTelemetry
time: [ 'Notify cursor moved from {1} to {2}' format: { anOldCursor position . aTextIndex } ]
during: [ self notifyCursorMoved: aCursor from: anOldCursor position to: aTextIndex ].
, the telemetry instructions are hidden by default.
But, if you search for Telemetry, it's not hidden:
BlFrameTelemetry gtReferences & BrTextEditorNavigator gtMethodsInClass