Configure Eclipse word-boundaries so ‘Next-Word-Key’ skips whole identifier

Try and unselect the option: Preferences / Java / Editor / Smart caret positioning in Java names And see if that enhances the user experience in term of cursor positioning. If this is not Java, you have a similar option in: Preferences / General / Editors / Text Editors / Smart caret positioning at line … Read more

How to stop lines of code from automatically shifting to the next line whenever I resize the window of the editor?

Look in the default Preferences.sublime-settings file for the setting below: // Disables horizontal scrolling if enabled. // May be set to true, false, or “auto”, where it will be disabled for // source code, and otherwise enabled. “word_wrap”: “auto”, If you want the default for word wrap to be off for all syntax types: Copy … Read more