Modify

Opened 15 years ago

Closed 14 years ago

#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, 15 years ago

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, 15 years ago

Version: 3.3.6.1

Automatic ticket cleanup.

comment:3 by Jos, 15 years ago

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

Version 0, edited 15 years ago by Jos (next)

comment:4 by Jos, 14 years ago

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.