Skip to content

Instantly share code, notes, and snippets.

@BiggerNoise
Created March 9, 2014 03:34
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 BiggerNoise/9442548 to your computer and use it in GitHub Desktop.
Save BiggerNoise/9442548 to your computer and use it in GitHub Desktop.
[
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["ctrl+shift+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+shift+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+j"], "command": "join_lines" },
{ "keys": ["ctrl+shift+j"], "command": "join_lines" },
{ "keys": ["super+\\"], "command": "reveal_in_side_bar" },
{ "keys": ["super+alt+l"], "command": "reindent" },
// Select text between brackets
{
"keys": ["ctrl+shift+b"],
"command": "bh_key",
"args":
{
"lines" : true,
"plugin":
{
"type": ["__all__"],
"command": "bh_modules.bracketselect"
}
}
},
// Select text including brackets
{
"keys": ["ctrl+shift+n"],
"command": "bh_key",
"args":
{
"lines" : true,
"plugin":
{
"type": ["__all__"],
"command": "bh_modules.bracketselect",
"args": {"always_include_brackets": true}
}
}
},
// ctrl + shift + m expands selction by default
// Toggle Global Enable
{
"keys": ["ctrl+alt+super+e"],
"command": "bh_toggle_enable"
},
// Go to left bracket
{
"keys": ["ctrl+alt+super+["],
"command": "bh_key",
"args":
{
"lines" : true,
"plugin":
{
"type": ["__all__"],
"command": "bh_modules.bracketselect",
"args": {"select": "left"}
}
}
},
// Go to right bracket
{
"keys": ["ctrl+alt+super+]"],
"command": "bh_key",
"args":
{
"lines" : true,
"plugin":
{
"type": ["__all__"],
"command": "bh_modules.bracketselect",
"args": {"select": "right"}
}
}
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment