Skip to content

Instantly share code, notes, and snippets.

@loopmode
Created July 28, 2016 15:01
Show Gist options
  • Select an option

  • Save loopmode/cdafded9a81585c050cece6f19f1ab11 to your computer and use it in GitHub Desktop.

Select an option

Save loopmode/cdafded9a81585c050cece6f19f1ab11 to your computer and use it in GitHub Desktop.
sublime keybindings
[
{ "keys": ["ctrl+y"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" }
]
@loopmode
Copy link
Author

Ctrl + Y: Delete line
Ctrl + 7: Toggle // comment on line
Ctrl + Shift+ 7: Toggle /* */ around selection
Ctrl + Alt + P: Quick project select

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