Skip to content

Instantly share code, notes, and snippets.

@Velrok
Created May 6, 2013 09:43
Show Gist options
  • Save Velrok/5524241 to your computer and use it in GitHub Desktop.
Save Velrok/5524241 to your computer and use it in GitHub Desktop.
My SublimeRepl keybindings.
[
{ "keys": ["ctrl+s"], "command": "repl_transfer_current", "args": {"scope": "selection"}},
{ "keys": ["shift+ctrl+s"], "command": "repl_transfer_current", "args": {"scope": "selection", "action":"view_write"}},
{ "keys": ["ctrl+f"], "command": "repl_transfer_current", "args": {"scope": "file"}},
{ "keys": ["shift+ctrl+f"], "command": "repl_transfer_current", "args": {"scope": "file", "action":"view_write"}},
{ "keys": ["ctrl+l"], "command": "repl_transfer_current", "args": {"scope": "lines"}},
{ "keys": ["shift+ctrl+l"], "command": "repl_transfer_current", "args": {"scope": "lines", "action":"view_write"}},
{ "keys": ["ctrl+b"], "command": "repl_transfer_current", "args": {"scope": "block"}},
{ "keys": ["shift+ctrl+b"], "command": "repl_transfer_current", "args": {"scope": "block", "action":"view_write"}}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment