fishy wrote:Hello,
Is it possible to add an mouse-over tooltip - so when the mouse-pointer is over a variable it shows its value in a tooltip ?
This would speed up the debugging session enormously.
I will take a look at this. It would be useful.
More Improvements:
- Variables: Filter / Ignore ( maybe contextmenu )
Don't understand this. Variables can be watched through the context menu.
- Scroll last changed variable into view
Should be possible.
- "Watch" variable
Don't understand this. Variables can be watched at the moment.
- Context menu that allows to Copy a variable's value into the clipboard ( can also be done by double clicking the value or something)
Should be possible.
- Split up of locals and globals ( maybe also a part or special window for all the standard autoit macros @xxx )
Not possible because of the way the debug code is created and there being no way of determining if the variable is local or not.
- Breakpoint list with all breakpoints. There you can enable/disable them and don't loose the breakpoint position when just disabling the breakpoint.
Should be possible. Advanced breakpoints is on the future improvements list.
- Special "step into" command that allows to jump into an autoit include folder's implementation.
Have you looked at the 'debug files in the autoit folder ' checkbox in the options? When checked you can step into the built in AutoIt includes. Other wise they are stepped over.
(mainly this may not be wanted, but for UDF development it might be very helpful)
- How to debug Array-Contents ? ( e.g.: _ArrayDisplay on doubleclicking an array variable )
This is a bug introduced when changing the variable operation. You can get around it by manually adding a variable with the array value to be read (i.e. $MyArray[1] instead of $MyArray. I will look at fixing in the next release.
- Shortcut key that executes an Explorer.exe on the File's directory to just open the folder of the file.
( I added this to the SciTE's Tool section and it's really usefull )
Should be possible.
Please continue your fantastic work !
Thanks! Steve