Skip to content

Instantly share code, notes, and snippets.

@avshatalov48
Last active November 6, 2017 07:41
Show Gist options
  • Save avshatalov48/8bda11b86a8c999998296205fb1dd93b to your computer and use it in GitHub Desktop.
Save avshatalov48/8bda11b86a8c999998296205fb1dd93b to your computer and use it in GitHub Desktop.
[
// Чтобы проверить, какой плагин висит на необходимом сочетании клавиш
// Вводим sublime.log_commands(True) в консоли и нажимаем необходимое сочетание клавиш.
// Стандартные сочетания клавиш
{ "keys": ["ctrl+alt+l"], "command": "reindent" },
{ "keys": ["ctrl+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
{ "keys": ["ctrl+y"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
// Gist
{ "keys": ["ctrl+k+i"], "command": "gist" },
{ "keys": ["ctrl+k+p"], "command": "gist_private" },
// Забивает стандартный Ctrl+S (Save)
// По умолчанию
// { "keys": ["ctrl+k", "ctrl+s"], "command": "gist_update_file" },
{ "keys": [""], "command": "gist_update_file" },
{ "keys": ["ctrl+k+o"], "command": "gist_list" },
{ "keys": ["ctrl+k+["], "command": "insert_gist_list" },
{ "keys": ["ctrl+k+]"], "command": "gist_add_file" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment