Question

I use emacs and always use ctrl-n/p to move the cursor up/down one line.

My teammates use sublime text and they always use MOUSE!!
I googled a bit but can't find a keybinding of cursor-up/down in windows sublime.

How do you move your cursor in windows sublime?

Was it helpful?

Solution

Add the following to your user key bindings.

{ "keys": ["ctrl+n"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["ctrl+p"], "command": "move", "args": {"by": "lines", "forward": true} }

If you are an emacs user, you may also be interested in trying out https://github.com/grundprinzip/sublemacspro

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top