Skip to content

Instantly share code, notes, and snippets.

@gecbla
Created August 15, 2019 13:31
Show Gist options
  • Save gecbla/ec5392e15498ee1e42f4141843400330 to your computer and use it in GitHub Desktop.
Save gecbla/ec5392e15498ee1e42f4141843400330 to your computer and use it in GitHub Desktop.
ST3 toggle comment and move focus
<ST3>/Packages/User/Macros/toogle_comment.sublime-macro
[
{
"command": "toggle_comment",
"args": {"block": false }
},
{
"command": "move",
"args": {"by": "lines", "forward": true }
}
]
<ST3>/Packages/User/Default (OSX).sublime-keymap
// Mac OSX
{
"keys": ["super+forward_slash"],
"command": "run_macro_file",
"args": {"file": "res://Packages/User/Macros/toogle_comment.sublime-macro"},
"context": [
{ "key": "selection_empty", "operator": "equal", "operand": "true", "match_all": true },
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment