Sublime Forum

[SOLVED] Move to EOL with Word Wrap

#1

I have a keybinding that’s set to move to EOL. I have word-wrap turned on. When I press my keybinding, my cursor goes to the end of the physical line instead of wrapping around to the end of the line of text.

0 Likes

#2

What’s your key binding?

0 Likes

#3

{ "args": { "extend": false, "to": "eol" }, "command": "move_to", "context": ], "keys": "ctrl+quote" ] }

0 Likes

#4

If you want to advance to the newline character, rather than the end of the line on screen, you can use “hardeol” instead of “eol”.

0 Likes

#5

Awesome, thanks. That’s my mistake.

0 Likes