Skip to content

Instantly share code, notes, and snippets.

@Ry0
Created February 1, 2017 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ry0/18eb8e9747661bd171384f8cf382daf0 to your computer and use it in GitHub Desktop.
Save Ry0/18eb8e9747661bd171384f8cf382daf0 to your computer and use it in GitHub Desktop.
Default (Linux).sublime-keymap
[
//mozc設定
{ "keys": ["shift+space"], "command": "toggle_mozc" },
//インデント整形
{ "keys": ["alt+ctrl+r"], "command": "reindent", "args": { "single_line": false }},
//clang-format
{ "keys": ["ctrl+shift+c"], "command": "clang_format" },
//color picker
{ "keys": ["ctrl+alt+c"], "command": "color_pick" },
//行の先頭、末尾に移動する
{ "keys": ["ctrl+right"], "command": "move_to", "args": { "to": "hardeol" } },
{ "keys": ["ctrl+left"], "command": "move_to", "args": { "to": "hardbol" } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment