Skip to content

Instantly share code, notes, and snippets.

@AlifArnado
Created December 2, 2015 15:56
Show Gist options
  • Save AlifArnado/1dc15c6f3237a8546994 to your computer and use it in GitHub Desktop.
Save AlifArnado/1dc15c6f3237a8546994 to your computer and use it in GitHub Desktop.
keymap building sublime setting
[
{ "keys": ["ctrl+alt+s"], "command": "auto_save" },
{
"keys": ["command+shift+r"], "command": "browser_refresh", "args": {
"auto_save": true,
"delay": 0.5,
"activate": true,
"browsers" : ["chrome"]
}
},
{ "keys": ["ctrl+alt+c"], "command": "exec", "args": {"kill": true} },
{ "keys": ["ctrl+space"], "command": "auto_complete" },
{ "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
]
},
{
"keys": ["alt+shift+f"],
"command": "html_beautify",
"context": [{
"key": "selector",
"operator": "equal",
"operand": "text.html,text.html.twig,text.twig,source.html,source.html.twig,source.twig"
}]
},
{
"keys": ["ctrl+alt+t"],
"command": "open_terminal",
"args": {
"parameters": ["-T", "Working in directory %CWD%"]
}
},
{ "keys": ["super+\\"], "command": "toggle_side_bar" },
{ "keys": ["super+shift+\\"], "command": "reveal_in_side_bar"},
{ "keys": ["super+shift+w"], "command": "close_others" },
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+shift+r"], "command": "goto_symbol_in_project" },
{ "keys": ["super+alt+r"], "command": "goto_definition" },
{ "keys": ["super+shift+t"], "command": "reopen_last_file" },
{ "keys": ["super+x"], "command": "clipboard_manager_cut" },
{ "keys": ["super+c"], "command": "clipboard_manager_copy" },
{ "keys": ["super+v"], "command": "clipboard_manager_paste", "args": { "indent": true } },
{ "keys": ["super+ctrl+v"], "command": "clipboard_manager_paste", "args": { "indent": false } },
{ "keys": ["super+shift+v"], "command": "clipboard_manager_previous_and_paste" },
{ "keys": ["super+alt+ctrl+v"], "command": "clipboard_manager_choose_and_paste" },
{ "keys": ["cmd+shift+c"], "command": "copy_path_to_clipboard" },
{ "keys": ["cmd+alt+w"], "command": "close_tabs" },
{ "keys": ["ctrl+alt+w"], "command": "mongo_list_connection" },
{ "keys": ["ctrl+alt+d"], "command": "mongo_list_dbs" },
{ "keys": ["ctrl+c", "ctrl+c"], "command": "mongo_list_collection" },
{ "keys": ["ctrl+w", "ctrl+w"], "command": "mongo_execute" },
{ "keys": ["ctrl+w", "ctrl+h"], "command": "mongo_history" },
{ "keys": ["ctrl+w", "ctrl+alt+q"], "command": "mongo_query" },
{ "keys": ["ctrl+w", "ctrl+alt+r"], "command": "mongo_show_records" },
{ "keys": ["ctrl+w", "ctrl+d"], "command": "mongo_desc" },
] // end tag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment