Skip to content

Instantly share code, notes, and snippets.

@feifanzhou
Created February 8, 2015 17:31
Show Gist options
  • Save feifanzhou/d0594f9695b42ac59cc9 to your computer and use it in GitHub Desktop.
Save feifanzhou/d0594f9695b42ac59cc9 to your computer and use it in GitHub Desktop.
Sublime keybindings
[
{ "keys": ["ctrl+tab"], "command": "next_view" }, // Make Ctrl+tab work the way you expect it to
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["super+shift+g"], "command": "goto_definition" },
{ "keys": ["super+v"], "command": "paste_and_indent" }, // Make Paste-and-indent the default
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["ctrl+x","o"], "command": "focus_neighboring_group" } // Copied from emacs
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment