Last active
December 12, 2015 02:58
-
-
Save maco1028/4702603 to your computer and use it in GitHub Desktop.
SublimeText KeyBind
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //SublimeText2 KeyBind | |
| //カーソル移動 | |
| { "keys": ["ctrl+j"], "command": "move", "args": {"by": "characters", "forward": false} }, | |
| { "keys": ["ctrl+k"], "command": "move", "args": {"by": "characters", "forward": true} }, | |
| { "keys": ["ctrl+u"], "command": "move", "args": {"by": "lines", "forward": false} }, | |
| { "keys": ["ctrl+m"], "command": "move", "args": {"by": "lines", "forward": true} }, | |
| //最行頭カーソル移動 | |
| { "keys": ["shift+ctrl+u"], "command": "move_to", "args": {"to": "bof", "extend": false} }, | |
| //最終行カーソル移動 | |
| { "keys": ["shift+ctrl+m"], "command": "move_to", "args": {"to": "eof", "extend": false} } | |
| ] |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
これでカーソルキーに指を移動しなくて済むと思う