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?

Était-ce utile?

La 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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top