PeterB
PeterB

Reputation: 2414

Is it possible to collapse variable List of Objects to specific depth in IntelliJ IDEA 2016 debugger with one click?

Is it possible to collapse variable list of objects in IntelliJ IDEA 2016 debugger to specific depth or fully with one click or shortcut?

Here is an example of what I need to do with one button/click:

BEFORE collapsion: enter image description here

AFTER collapsion: enter image description here

It would be much more comfortable, to be able to do such list collapsion, without clicking on each item in list individually, but just with one click on list (or other data structure with nested objects).

Upvotes: 1

Views: 1403

Answers (1)

Smnd
Smnd

Reputation: 1579

Unfortunately I am not aware of a shortcut to expand all the nodes at once.

In order to avoid going on a clicking spree, though, there's the slightly quicker way: use the Fully Expand Tree Node action, which has numpad(*) as shortcut (or, cmd+shift+A and just start typing the action name).

Upvotes: 6

Related Questions