Skip to content

Instantly share code, notes, and snippets.

@PseudoSky
Last active September 26, 2018 03:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PseudoSky/74f70bd64baca5d6e4cd90feca8a8b58 to your computer and use it in GitHub Desktop.
Save PseudoSky/74f70bd64baca5d6e4cd90feca8a8b58 to your computer and use it in GitHub Desktop.
Sublime Key Bindings
[
{
"keys": ["option+i"],
"args": null,
"command": "swap_case"
},
{
"keys": ["option+="],
"command": "show_overlay",
"args": {"overlay": "command_palette"}
},
{
"keys": ["super+shift+l"],
"command": "expand_selection",
"args": {"to": "line"}
},
{
"keys": ["super+l"],
"command": "split_selection_into_lines"
},
{
"keys": ["option+l"],
"command": "split_selection_into_lines"
},
{
"keys": ["option+u"],
"args": { "operation": "unique" },
"command": "permute_lines"
},
{
"keys": ["super+shift+d"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1]]
}
},
{
"keys": ["super+e"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.5, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["super+d"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 0.5, 1.0],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
}
},
{
"keys": ["option+s"],
"args": { "case_sensitive": false },
"command": "sort_lines"
},
{
"keys": ["option+1"],
"args": { "padding": 1, "start": 0, "step": 1 },
"command": "text_pastry_range"
},
{
"keys": ["option+p"],
"args": { "operation": "reverse" },
"command": "permute_selection"
},
{
"keys": ["option+up"],
"command": "swap_line_up"
},
{
"keys": ["option+down"],
"command": "swap_line_down"
},
{
"keys": ["option+u"],
"command": "upper_case"
},
{
"keys": ["option+y"],
"command": "lower_case"
},
{
"keys": ["ctrl+s"],
"command": "swap_case"
},
{
"keys": ["option+["],
"command": "find_all_under"
},
{
"keys": ["option+]"],
"command": "show_panel",
"args": {"panel": "find_in_files"}
},
{
"keys": ["ctrl+e"],
"command": "expand_selection",
"args": {
"to": "scope"
}
},
{
"keys": ["ctrl+shift+e"],
"command": "expand_selection",
"args": {
"to": "indentation"
}
},
{
"keys": ["ctrl+shift+b"],
"command": "expand_selection",
"args": {
"to": "brackets"
}
},
{
"keys": ["option+r", "option+i"],
"command": "run_macro_file",
"args": {"file": "macros/reindent.sublime-macro"}
},
{
"keys": ["option+d"],
"command": "run_macro_file",
"args": {"file": "macros/dup-line.sublime-macro"}
}
]
[
{
"args":
{
"to": "line"
},
"command": "expand_selection"
},
{
"args":
{
"by": "characters",
"extend": true,
"forward": false
},
"command": "move"
},
{
"args": null,
"command": "copy"
},
{
"args":
{
"by": "characters",
"forward": true
},
"command": "move"
},
{
"args":
{
"characters": "\n"
},
"command": "insert"
},
{
"command": "paste_and_indent"
}
]
AutoPEP8
GitGutter
Hasher
HTML-CSS-JS Prettify
Pretty JSON
SideBarEnhancements
SublimeLiner
SublimeLinet-jshint
Text Pastry
URLEncode
[
{
"args": null,
"command": "select_all"
},
{
"args":
{
"single_line": true
},
"command": "reindent"
}
]
[
{
"args":
{
"operation": "unique"
},
"command": "permute_lines"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment