Sublime Forum

Disable Smart Cursor on End Key?

#1

Hi all,

Is it possible to disable the behavior where hitting the END key on a line tells Sublime that subsequent up/down arrow keys should place the cursor at the end of previous and next lines? Here’s what I mean. If the cursor’s at the end of the Hello World line because I’ve hit END…

Hello world.| This is a longer line.

…hitting the down arrow will cause the cursor to jump to the end of the next line:

Hello world. This is a longer line.|

…whereas I really just want it to appear here:

Hello world. This is a lo|nger line.

The smart EoL cursor is a neat feature, but I’m just not used to it. :smile:

Thanks!

0 Likes

#2

I haven’t been able to find reference to this; anyone have any thoughts?

0 Likes

#3

add this to your keybindings.

{ "keys": "end"], "command": "move_to", "args": {"to": "hardeol"} }
0 Likes

#4

Aha! Thanks so much. :smile:

0 Likes