martomo / SublimeTextXdebug

Xdebug debugger client for Sublime Text
MIT License
564 stars 89 forks source link

Display of arrays #79

Closed raptor235 closed 10 years ago

raptor235 commented 10 years ago

Is there anyway to strip the 1st part from the array dump... it's the same data over and over that get's repeated and makes it very hard to read what's going on... here is an example

https://www.dropbox.com/s/d34x27fnrzrj649/Screenshot%202014-05-14%2010.39.50.png

martomo commented 10 years ago

If I understand correctly instead of it displaying:

$client_libraries = array[2]
    $client_libraries['first_key'] = array[2]
        $client_libraries['first_key'][0] = 'test'
        $client_libraries['first_key'][1] = 'value'
    $client_libraries['second_key'] = <string>

You would like an option to display it as followed?

$client_libraries = array[2]
    ['first_key'] = array[2]
        [0] = 'test'
        [1] = 'value'
    ['second_key'] = <string>