Delphi Short Cut to add Date and Name Comment - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T19:47:55Zhttp://stackoverflow.com/feeds/question/339225http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment3Delphi Short Cut to add Date and Name CommentChristopher Chase2008-12-04T00:19:28Z2009-07-25T18:53:14Z
<p>Does anyone know of a short cut to place my name and the date where the cursor is i.e.</p>
<pre><code> //021208 DarkAxi0m
</code></pre>
<p>so i don't keep check what the date is when i'm adding comments. </p>
<p>Im using Delphi7, with CnPack And GExperts Installed.
I think it should be able to be done with one of those experts. </p>
http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment/339236#3392361Answer by Christopher Chase for Delphi Short Cut to add Date and Name CommentChristopher Chase2008-12-04T00:24:55Z2008-12-04T00:24:55Z<p>Never mind found one in CnPack/Soure Templates
Added the template</p>
<pre><code> //%Date% DarkAxi0m
</code></pre>
<p>Note: i should look in the menus more closely</p>
http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment/339379#3393791Answer by Nick Hodges for Delphi Short Cut to add Date and Name CommentNick Hodges2008-12-04T01:44:12Z2008-12-04T01:44:12Z<p>You might also look at the Live Templates feature, which can be scripted to do just what you want:</p>
<p><a href="http://cc.codegear.com/Item/24990" rel="nofollow">http://cc.codegear.com/Item/24990</a></p>
<p>Don't be put off by the name, it includes a template script to include the date, time, including the ability to format it as you want.</p>
http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment/339817#3398172Answer by gabr for Delphi Short Cut to add Date and Name Commentgabr2008-12-04T07:46:37Z2008-12-04T07:46:37Z<p>It is also simple to do with GExperts' Expand Macro Template (found in Editor Experts).</p>
<p>I use this expansion to insert yyyy-mm-dd at the current position:</p>
<p>%YEAR%-%MONTH%-%DAY%|</p>
http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment/341127#3411272Answer by CheGueVerra for Delphi Short Cut to add Date and Name CommentCheGueVerra2008-12-04T16:03:39Z2008-12-04T16:03:39Z<p>I use GExperts to do this, like so:</p>
<p>in the</p>
<p>GExperts\Configuration </p>
<p>Select the Editor Experts tab.</p>
<p>In the list of experts, select </p>
<p>Insert Date\Time</p>
<p>Click on the configuration, insert the desired text:</p>
<p>'//' ddmmyy 'DarkAxi0m: '
//021208 DarkAxi0m:</p>
<p>After, to insert your new Date name comment all you need to do is:</p>
<p>ctrl+alt+a</p>
<p>I setup most programmers at the job like that.</p>
http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment/343817#3438171Answer by moodforaday for Delphi Short Cut to add Date and Name Commentmoodforaday2008-12-05T13:24:06Z2008-12-05T13:37:21Z<p>For a solution that will work in most applications under Windows, not only in Delphi, you can use Authotkey (free, autohotkey.com). One of its many features is the ability to expand strings that you type - typically used for autocorrecting typos. </p>
<p>I start all my shortcut strings with a semicolon, since it practically never leads strings I type in real life, so in your example, to insert a comment-date-username sequence, I would want to type semicolon, slash, slash:</p>
<pre><code>;//
</code></pre>
<p>The Authotkey script (which you can put in an .ahk text file and add the file to Autostart) would look like this:</p>
<pre><code>::;//:: ; this means: when I type ";//", do what follows
FormatTime, curDate,, yyyy-MM-dd ; the double comma is intended
SendInput // %curDate% %A_UserName% ; variable expansion
return
</code></pre>
<p>This produces the following output:</p>
<pre><code>// 2008-12-05 moodforaday
</code></pre>
<p>AHK syntax is a little dense, but there is an extensive help file.</p>
<p>On edit: this script could be expanded to apply the correct comment syntax depending on the IDE you are working in at the moment. You would detect active window title, find a signature substring ("Delphi") and choose the proper comment character(s). This way you could type the same hotstring to insert your comment regardless of the current IDE or language. You can also use SendInput to position the caret the way Delphi templates do.</p>
http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment/1182745#11827450Answer by TheSteven for Delphi Short Cut to add Date and Name CommentTheSteven2009-07-25T18:53:14Z2009-07-25T18:53:14Z<p>Here is a variation with GExperts (www.gexperts.org) that makes it easy to search for changes based on developer or date.</p>
<p>Example of output and comment:</p>
<pre><code> //07.25.2009 (SLB20090725) - Added 3rd optional parameter.
</code></pre>
<p>Besides an easily readable date I can easy search for comments programmer, by year, year+month etc.)
For example I can search for (SLB200905 for any comments I logged in May of 2009.</p>
<p>To do:
Under the GExperts menu open Configuration... (at the bottom of the list) then select the Editor Experts tab.
Locate 'Insert Date/Time' and double click on it.</p>
<p>//mm.dd.yyyy '(ABC'yyyymmdd') -' </p>
<p>Where ABC is the programmers name, initials, id, or whatever.</p>
<p>Then use Ctrl-Alt-A when in Delphi's IDE to insert</p>
<p>This should work in any verison of Delphi supported by GExperts.</p>