harbourCodeExtension icon indicating copy to clipboard operation
harbourCodeExtension copied to clipboard

Request to order variable in debugger alphabetically.

Open EricLendvai opened this issue 3 years ago • 1 comments

After doing some research it seems that the ordering of variable in the debugger needs to be done by the extension.

Could you add such option to your extension? Sometimes I have a lot of variable and object properties, that having them alphabetically ordered would be helpful.

https://github.com/microsoft/vscode/issues/112660 weinand commented Dec 16, 2020 Yes, sorting variables needs to be done by the debug extensions.

Thanks, Eric

EricLendvai avatar Dec 17 '22 10:12 EricLendvai

It is interesting, Harbour debugger gives the variables in creation order, so first the parameters and later the locals in the order they are defined. I will check this, I want keep the parameters first and in order and for workarea columns I will keep the order of the table, for the others I will do something. About the classes, I have a similar problem, I have little classes that derives from other classes and the sum of data is big, some time ago I thought to split the data for base class in a sub branch, but it is very complex. I will work on it.

APerricone avatar Jan 09 '23 03:01 APerricone