Skip to content

Instantly share code, notes, and snippets.

@xhacker
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xhacker/49ce9e8539542835f06e to your computer and use it in GitHub Desktop.
Save xhacker/49ce9e8539542835f06e to your computer and use it in GitHub Desktop.
Mac-like Sublime Text keymap for Linux
[
{ "keys": ["ctrl+v"], "command": "paste_and_indent" },
{ "keys": ["ctrl+shift+v"], "command": "paste" },
{ "keys": ["ctrl+a"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+d"], "command": "right_delete" },
{ "keys": ["ctrl+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard EOL.sublime-macro"} },
{ "keys": ["ctrl+shift+a"], "command": "select_all" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment