Opened 15 years ago
Closed 14 years ago
#1974 closed Feature Request (Rejected)
Tidy autoit source auto include and global comment
| Reported by: | Owned by: | Jos | |
|---|---|---|---|
| Milestone: | Component: | SciTE4AutoIt | |
| Version: | Severity: | None | |
| Keywords: | Tidy | Cc: |
Description
I think it would be nice if the tidy tool would add a comment next the the include where it would list what functions are being used by the script that are in the include.
And also if it would comment undenieth global functions what functions that use that global variable. Maybe also have tidy, optionally autoprefix local and global variables with l or g respectfully.
Attachments (0)
Change History (4)
comment:1 by , 15 years ago
comment:3 by , 15 years ago
| Component: | AutoIt → SciTE4AutoIt |
|---|---|
| Keywords: | Tidy added |
| Owner: | set to |
I can imagine this could be done in the Documentation option, but I am not planning to have Tidy add this kind of information to a script a that would mean multiple Iterations.
Have you looked /GD option?
comment:4 by , 14 years ago
| Resolution: | → Rejected |
|---|---|
| Status: | new → closed |
No response so guess not needed anymore.
Closing as rejected.

Example of what tidy could maybe do.
---before--
#Include <Date.au3>
Global $sDate
echodate()
Func echodate()
Local $X = 1000
$sDate = _Now()
ConsoleWrite(@LF & $sDate)
Sleep($X)
$sDate = _Now()
ConsoleWrite(@LF & $sDate)
EndFunc ;==>echodate
---after tidy---
#Include <Date.au3>; _now,
Global $gsDate
echodate()
Func echodate()
EndFunc ;==>echodate