Reputation: 93
I have searched the Web for this, but with no luck. Any idea?
Thanks.
Upvotes: 8
Views: 3698
Reputation: 611
Try using the Emacs+ plugin available here:
http://www.mulgasoft.com/emacsplus
It provides a HUGE range of functionality - including the selection highlighting that you're looking for - that really helps the move from Emacs. I've only been using it for a couple of days, but it appears stable and integrates very well with the editor.
Upvotes: 5
Reputation: 1324337
As described here, you can set emacs key binding to work in component editor in Eclipse
Go to Preferences -> General -> Keys
.
Text Editing
" categoriesNext Column
, Previous Column
Copy Command
"Control-f
to
generate "^F
".When:
" to "Editing Components
".So if, in emacs, selection is done by setting the mark (Control-Space
) at the start of the region, then moving the point to to the end of the region, you could associate the appropriate shortcut to:
Text Editing > Select Text Start
Text Editing > Select Text End
Upvotes: 3