Skip to content

Instantly share code, notes, and snippets.

@ferventcoder
Last active December 30, 2015 17:09
Show Gist options
  • Save ferventcoder/7859399 to your computer and use it in GitHub Desktop.
Save ferventcoder/7859399 to your computer and use it in GitHub Desktop.
SublimeText2 User Keybindings
[ // ClipboardManager - https://github.com/colinta/SublimeClipboardManager
{ "keys": ["ctrl+s"], "command": "save" },
{ "keys": ["ctrl+x"], "command": "clipboard_manager_cut" },
{ "keys": ["ctrl+c"], "command": "clipboard_manager_copy" },
{ "keys": ["ctrl+v"], "command": "clipboard_manager_paste", "args": { "indent": true } },
{ "keys": ["ctrl+alt+v"], "command": "clipboard_manager_next_and_paste" },
{ "keys": ["ctrl+shift+alt+v"], "command": "clipboard_manager_previous_and_paste" },
{ "keys": ["ctrl+pageup"], "command": "clipboard_manager_next" },
//{ "keys": ["ctrl+pagedown"], "command": "clipboard_manager_previous" },
//{ "keys": ["ctrl+home"], "command": "clipboard_manager_show" },
{ "keys": ["ctrl+shift+v"], "command": "clipboard_manager_choose_and_paste" }
]
@ferventcoder
Copy link
Author

This is for OSX

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