Modify

#1974 closed Feature Request (Rejected)

Tidy autoit source auto include and global comment

Reported by: arustad@… 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 anonymous, on Jul 14, 2011 at 10:45:39 PM

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()

Local $lX = 1000
$gsDate = _Now()
ConsoleWrite(@LF & $gsDate)
Sleep($lX)
$gsDate = _Now()
ConsoleWrite(@LF & $gsDate)

EndFunc ;==>echodate

comment:2 by TicketCleanup, on Jul 15, 2011 at 12:00:02 AM

Version: 3.3.6.1

Automatic ticket cleanup.

comment:3 by Jos, on Jul 16, 2011 at 7:12:11 PM

Component: AutoItSciTE4AutoIt
Keywords: Tidy added
Owner: set to Jos

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 as that would mean multiple Iterations.
Have you looked /GD option?

comment:4 by Jos, on Oct 28, 2011 at 8:03:32 PM

Resolution: Rejected
Status: newclosed

No response so guess not needed anymore.
Closing as rejected.

Modify Ticket

Action
as closed The owner will remain Jos.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.