Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've always found the eclipse's automatic close quotes and parenthesis features to be useless. For example hitting on a single " will lead to

"<cursor>"

I don't need the second quote. It's annoying to remove afterward. How to turn this feature off?

share|improve this question
1  
I know this post is almost 4 years old, but in case others discover this just now as I have: You can hit tab to move your cursor to the highlighted location. This means you don't need to arrow key out of the qoutes/brackets/parens, etc. Pretty handy. I turned all closing back on once I discovered this. – jtsmith1287 Dec 31 '12 at 18:29
Agreed. This is the kind of behaviour you can put up with in MS word but resent in Eclipse. When developers try to guess what users want, users end up trying to guess what developers guessed they needed in the first place. – Alain Pannetier Apr 9 at 5:51

4 Answers

up vote 27 down vote accepted

Try Windows -> Preferences -> Java -> Editor -> Typing and uncheck the "Strings" checkbox in the "Automatically close" group.

share|improve this answer
1  
great! You showed me a way to turn them back on (: – drevicko Aug 14 '12 at 0:28
@drevicko SEe a psychiatrist – bobobobo Apr 9 at 18:18
For Perl, it's in Preferences > Perl EPIC > Editor > Smart Typing – golimar Apr 15 at 13:43

Jump out of the quotes by simply hitting Enter when you are done typing the string contents (at least, in the java editor).

share|improve this answer

To turn off auto quotes in Titanium Studio, under preferences -> Titanium Studio -> Editors -> uncheck "Auto-close matching character pairs"

share|improve this answer

I don't know how to turn the feature off however, you can hit tab and eclipse will jump past the quotes.

share|improve this answer
1  
Hitting tab for me eclipse enters an actual tab inside the quotes and not jump. – Yada Jan 14 '09 at 22:00
I was editing php file with Zend Studio. Hitting tabs works when I'm editing Java using eclipse. – Yada Jan 14 '09 at 22:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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