Skip to content

Instantly share code, notes, and snippets.

@kyaido
Created April 30, 2014 09:32
Show Gist options
  • Save kyaido/b2dd3dfb75e67d85d719 to your computer and use it in GitHub Desktop.
Save kyaido/b2dd3dfb75e67d85d719 to your computer and use it in GitHub Desktop.
key bindings for sublimetext2
[
// Ctrl + Tabで、タブの順番に切り替わるようにする
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" },
{ "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" },
// テキストをタグで囲むショートカットをDW風キーバインドに
{ "keys": ["ctrl+t"], "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" } },
// new view into file
{ "keys": ["ctrl+shift+alt+n"], "command": "clone_file" },
// すべてのタブを閉じる
{ "keys": ["ctrl+shift+w"], "command": "close_all" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment