IDE: Tool-Panel variables should access linkedlist elements
Posted: Wed May 14, 2008 2:14 pm
It would be very helpful for code editing, if there would be a tree structure in tool-panel "variables", where I can directly access linked lists with their elements.
For example:
This should be displayed on "variables" tool-panel as:
[+] testList
|- testString
|- testLong
A double-click on "testString" should automatically insert "testList()\testString" to the actual code position.
Perfect would be additionally, if you can draw the icon for variable types - so that we directly know what kind of type we are dealing with.
For me, this would be a great help, as this does not come with syntax completation. Actually I am endlessly scrolling within my code, to figure out the structures item name.
What do you think about this?
For example:
Code: Select all
Structure TestStruct
testString.s
testLong.l
EndStructure
Global NewList testList.TestStruct()
[+] testList
|- testString
|- testLong
A double-click on "testString" should automatically insert "testList()\testString" to the actual code position.
Perfect would be additionally, if you can draw the icon for variable types - so that we directly know what kind of type we are dealing with.
For me, this would be a great help, as this does not come with syntax completation. Actually I am endlessly scrolling within my code, to figure out the structures item name.
What do you think about this?