vote up 3 vote down star
1

Is there an Eclipse command to surround the current selection with parentheses?

Creating a template is a decent workaround; it doesn't work with the "Surround With" functionality, because I want to parenthesize an expression, not an entire line, and that requires ${word_selection} rather than ${line_selection}.

Is there a way that I can bind a keyboard shortcut to this particular template? Ctrl-space Ctrl-space arrow arrow arrow isn't as slick as I'd hoped for.

flag

80% accept rate

3 Answers

vote up 6 vote down check

Maybe not the correct answer, but at least a workaround:

  1. define a Java template with the name "parenthesis" (or "pa") with the following :

    (${word_selection})${cursor}

  2. once the word is selected, ctrl-space + p + use the arrow keys to select the template

I used this technique for boxing primary types in JDK 1.4.2 and it saves quite a lot of typing.

link|flag
For me, it's the same except that for step 2 I type ctrl-space twice to bring up the template list. (ctrl-space + p doesn't work for me) – Matt Passell Jul 23 at 18:27
vote up 0 vote down

I find that this leaves the originally selected text with the template appended afterward. For example, if I select the word "parenthetic" and run the above template the editor will show:

parenthetic(parenthetic)

instead of the desired:

(parenthetic)

Anyone else come across this?

link|flag
Vladimir's answer worked for me as described. I do use it, but it's not exactly what I'm still hunting for, so I haven't accepted his answer. I'm using "(${word_selection}${cursor})" as my template, in Eclipse 3.3 – sylvarking Oct 15 '08 at 15:45
vote up 0 vote down

Easy, Window->Prefs, then select Java->Editor->Templates

Create a new template with : (${line_selection}${cursor})

The "line_selection" means you have to select more than one line.

You can try creating another one with "word_selection", too.

Then, select text, right click, Surround With... and choose your new template.

link|flag
Surround with only works with line_selection, and line_selection doesn't fit my use case. – sylvarking Sep 15 '08 at 22:11

Your Answer

Get an OpenID
or

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