Skip to content

Instantly share code, notes, and snippets.

@maco1028
Last active December 12, 2015 02:58
Show Gist options
  • Select an option

  • Save maco1028/4702603 to your computer and use it in GitHub Desktop.

Select an option

Save maco1028/4702603 to your computer and use it in GitHub Desktop.
SublimeText KeyBind
//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} }
]
@maco1028
Copy link
Author

maco1028 commented Feb 3, 2013

これでカーソルキーに指を移動しなくて済むと思う

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment