Skip to content

Instantly share code, notes, and snippets.

@mulle-nat
Last active October 1, 2019 12:42
Show Gist options
  • Save mulle-nat/c95bfef638026592a5a5d3742829dacc to your computer and use it in GitHub Desktop.
Save mulle-nat/c95bfef638026592a5a5d3742829dacc to your computer and use it in GitHub Desktop.
Sublime Text, add CTRL- shortcuts for copy/paste and some more
[
{ "keys": ["ctrl+c"], "command": "copy" },
{ "keys": ["ctrl+x"], "command": "cut" },
{ "keys": ["ctrl+v"], "command": "paste" },
{ "keys": ["ctrl+s"], "command": "save" },
{ "keys": ["ctrl+a"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment