Delphi Short Cut to add Date and Name Comment - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T19:47:55Z http://stackoverflow.com/feeds/question/339225 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment 3 Delphi Short Cut to add Date and Name Comment Christopher Chase 2008-12-04T00:19:28Z 2009-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#339236 1 Answer by Christopher Chase for Delphi Short Cut to add Date and Name Comment Christopher Chase 2008-12-04T00:24:55Z 2008-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#339379 1 Answer by Nick Hodges for Delphi Short Cut to add Date and Name Comment Nick Hodges 2008-12-04T01:44:12Z 2008-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#339817 2 Answer by gabr for Delphi Short Cut to add Date and Name Comment gabr 2008-12-04T07:46:37Z 2008-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#341127 2 Answer by CheGueVerra for Delphi Short Cut to add Date and Name Comment CheGueVerra 2008-12-04T16:03:39Z 2008-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#343817 1 Answer by moodforaday for Delphi Short Cut to add Date and Name Comment moodforaday 2008-12-05T13:24:06Z 2008-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#1182745 0 Answer by TheSteven for Delphi Short Cut to add Date and Name Comment TheSteven 2009-07-25T18:53:14Z 2009-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>