about summary refs log tree commit diff
path: root/Default (OSX).sublime-keymap
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2016-06-22T20·36-0400
committerWilliam Carroll <wpcarro@gmail.com>2016-06-22T20·36-0400
commitec166d69a18ea8cb4505c463eaf2d59b11fb06bd (patch)
tree2907cc3df07b5570c929f2c45e6184efa649adc4 /Default (OSX).sublime-keymap
parent46b758d6482a45599fd8a2850a391c1be14ab33a (diff)
Adds user-defined key-bindings
Diffstat (limited to 'Default (OSX).sublime-keymap')
-rw-r--r--Default (OSX).sublime-keymap27
1 files changed, 27 insertions, 0 deletions
diff --git a/Default (OSX).sublime-keymap b/Default (OSX).sublime-keymap
new file mode 100644
index 000000000000..fc789ca63c50
--- /dev/null
+++ b/Default (OSX).sublime-keymap
@@ -0,0 +1,27 @@
+[
+  { "keys": ["super+\\"], "command": "toggle_side_bar" },
+  { "keys": ["ctrl+tab"], "command": "next_view" },
+  { "keys": ["ctrl+shift+tab"], "command": "prev_view" },
+  {
+    "keys": ["super+enter"],
+    "command": "run_macro_file",
+    "args": {
+      "file": "res://Packages/Default/Add Line Before.sublime-macro"
+    }
+  },
+  {
+    "keys": ["j", "j"],
+    "command": "_enter_normal_mode",
+    "args": { "mode": "mode_insert" },
+    "context": [{"key": "vi_insert_mode_aware"}]
+  },
+  {
+    "keys": ["super+o"],
+    "command": "show_panel",
+    "args": { "panel": "console", "toggle": true } 
+  },
+  {
+    "keys": ["super+shift+o"],
+    "command": "reveal_in_side_bar"
+  }
+]