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?

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top