Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
188 views

Delphi live template to surround selection with parentheses

I'm trying to make a Delphi live template (in D2010) to surround a selection with (). My current attempt looks like: <code language="Delphi" delimiter="|"><![CDATA[(|selected|)]]> and ...
4
votes
2answers
127 views

Extending class documentation and live templates

I am playing with code documentation and live templates and I quite don't get it. I've read Dr.Bob's article about generating documentation and wiki articles about live templates but I have one ...
4
votes
1answer
688 views

how can i make a “Surround” type Delphi Template?

i'm migrating my app to delphi 2009. my app must still use a lot of AnsiString. during migration, i find myself always converting: abc := def; into: abc := string(def); or abc := ...
3
votes
3answers
381 views

What is the Eclipse equivalent of IntelliJ “Live templates”?

I mean stuff like typing "iter" and getting a "for" loop with a choice of what variable to iterate on , typing "soutv" to generate a "System.out.println" with the "variable=" already in ... Thanks !
2
votes
1answer
461 views

Resharper Live Template Macro that changes variable name upon exit

I would like to create a Resharper Live Template that changes all spaces to underscores ind my "fact" Live template variable $testname$: <Fact()> _ Public Sub $testnames$() ' Arrange ...
1
vote
2answers
257 views

Intellij Live Template

Is there any way to use a default token value in Intellij Live templates? For example I have the following live template which declares a private variable that I would like to create nearly for every ...
1
vote
1answer
408 views

Live Template for Delphi that generate a Property with getter / setter and create the private field?

Searching here and on the internet have not let me to a example of a Live Template for Delphi that generate a Property with getter / setter and also generate the private field and execute the ...
0
votes
1answer
46 views

Transferring Intellij Live Templates Between Machines

I'm trying to figure out how to transfer the templates in the /.IdeaC10/config/templates/user.xml file to my coworker's machines. If I copy into the user.xml file, then those changes seem to be ...
0
votes
0answers
121 views

Intellij live template

I've a wrote a live template that should create a main method: static public void main(String args[]) { PApplet.main(new String[] { "--present", "$PACKAGE$.$CLASS$" }); } $PACKAGE$ is set to ...
0
votes
1answer
115 views

How to make live template in Visual studio 2010?

How to make live template in Visual studio 2010, I don't know is it really live template or macro, but what I wan't to do is when I'm write code and when I type let's say -> in, and press space, that ...