vote up 8 vote down star
5

Anybody know of a good eclipse plugin for recording and playing back macros? I've tried this one, but it didn't do me any good- seemed like it wasn't ready for primetime.

I know about editor templates, but I'm looking for something that I can use to record my keystrokes and then apply multiple times against a wad of text.

This seems like a strange hole in an IDE, am I missing some builtin facility for this?

flag

6 Answers

vote up 5 vote down check

I put something together over the last month or so that you may find useful. It has limitations since the Eclipse editor/commands weren't designed with macro support in mind, but I think it works reasonably well. I just posted it out at SourceForge a couple of days ago. It requires Eclipse 3.4. https://sourceforge.net/project/showfiles.php?group_id=242831&package_id=296347&release_id=635310

link|flag
Awesome! Thanks for the pointer. – Tim Howland Oct 24 '08 at 23:25
Link appears to be broken. Correct link is: sourceforge.net/projects/practicalmacro – Templar Nov 9 at 21:55
vote up 3 vote down

This seems like a strange hole in an IDE, am I missing some builtin facility for this?

This is a common problem, there are around 4 bugs opened in Eclipse tracker for this. Unfortunately you would probably see macros in Eclipse in v4.0 or later.

link|flag
vote up 3 vote down

Just for the record, there is another project called MacroSchmacro that does eclipse macros, but it doesn't record many important things (like searching to navigate). It is also extremely slow.

link|flag
vote up 2 vote down

There was a plug-in called Eclipse Monkey which allows writing Scripts that execute inside the IDE. It was terminated about a month ago due to lack of interest. It is based on an older plug-in called Groovy Monkey. If you google it, you can still get it. The Aptana team has some more information on using it.

Note that this allows writing scripts, but not recording actions.

link|flag
vote up 1 vote down

Practical Macro plugin seems to do a pretty good job.

link|flag
vote up 0 vote down

For simple text expansion on a Windows computer, you could use AutoHotkey. It's not as powerful as most macro tools, but since it's not tied to any one program, it can be used in other editors, emails, etc.

For example, if I type ";;ln" AutoHotkey instantly sends the keystrokes to delete this and replace it with "System.out.println();" with the cursor in between the perentheses.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.