0

I frequently use the CtrlDelete command to delete the next word.

I was wondering, is there an equivalent keyboard combination in Eclipse to delete the next word in a camelcase word?

Jeff Axelrod
  • 27,676
  • 31
  • 147
  • 246

1 Answers1

1

Actually CtrlDelete deletes up to the next camel case word border, not whitespace word border (in the Java editor).

So for deletion of the next camel case word part you could use the sequence CtrlRight/Left (position before current or next camel case word part), CtrlDelete.

Bananeweizen
  • 21,797
  • 8
  • 68
  • 88
  • Weird, I can't remember what prompted me to post this. One would think would have tried it before writing the question. Maybe I was using a different language at the time or perhaps I was SO'ing with Ambien? – Jeff Axelrod Oct 22 '12 at 17:24
  • I'm writing Python code currently in Eclipse and this feature does not work the same as it does in Java. Do you have any idea how to change that functionality to match the above? – Chris Arena Nov 20 '12 at 19:46