I'm developing an Eclipse plugin that needs to respond to the current cursor position in an Eclipse editor.
From the tests I've done, it appears that using the SelectionService only tells you when a non-empty selection is made in an editor, not when the cursor is moved.
I've found one site describing how to track selections by registering for mouse and keyboard events, but that seems like a bit of a hack.
I've also seen someone asking on StackOverflow about alternatives to the CaretListener interface for tracking cursor movement in an Eclipse editor, and describing a way to register with an editor's text viewer (rather than the global SelectionService) to get caret movement updates, but they suggest that it's a less-effecient method that would be better replaced with the CaretListener interface in more recent versions of Eclipse.
That last might be an option, but it sounds like using the CaretListener would be the preferred approach...but if it is, how can it be done?