smezae
5/16/2018 - 3:22 PM

sublime-keybindings

[
  { "keys": ["ctrl+shift+o"], "command": "prompt_open_folder" },
  { "keys": ["ctrl+shift+m"], "command": "toggle_menu"},
  { "keys": ["ctrl+shift+s"], "command": "auto_save" },
  // Multiple carets
  { "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} },
  { "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} },
  { "keys": ["ctrl+keypad_divide"], "command": "toggle_comment", "args": { "block": false } },
  { "keys": ["ctrl+shift+keypad_divide"], "command": "toggle_comment", "args": { "block": true } },
  //{ "keys": ["tab"], "command": "insert_best_completion", "args": {"default": "\t", "exact": true} }
  {"keys": ["ctrl+shift+i"], "command": "reindent", "args": {"single_line": false}}
]