aboutsummaryrefslogtreecommitdiff
path: root/.config/sublime-text-3
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2018-09-17 00:48:37 -0400
committertdro <tdro@users.noreply.github.com>2018-09-17 00:48:37 -0400
commit7d5999f806eb58a337c3b85fc5d556f47f46efea (patch)
tree97b0686ba822f90583ed37ffff243c49351dfa1a /.config/sublime-text-3
parentaa355b750442d3dce9c84bd3f401d785846f1158 (diff)
downloaddotfiles-7d5999f806eb58a337c3b85fc5d556f47f46efea.tar.gz
dotfiles-7d5999f806eb58a337c3b85fc5d556f47f46efea.tar.bz2
dotfiles-7d5999f806eb58a337c3b85fc5d556f47f46efea.zip
dotfiles: add sublime keymap
Diffstat (limited to '.config/sublime-text-3')
-rw-r--r--.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap12
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap b/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap
new file mode 100644
index 0000000..0d194d9
--- /dev/null
+++ b/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap
@@ -0,0 +1,12 @@
+[
+ // Origami Vim Mappings
+ { "keys": [":", "v", "s", "p" ], "command": "create_pane", "args": {"direction": "right", "give_focus" : true} },
+ { "keys": [":", "s", "p" ], "command": "create_pane", "args": {"direction": "down", "give_focus" : true} },
+ { "keys": [":", "b", "d"], "command": "destroy_pane", "args": {"direction": "self"} },
+
+ // PHP Mappings
+ { "keys": ["f7"], "command": "insert_php_constructor_property" },
+
+ // Toggle Line Numbers
+ { "keys": ["ctrl+alt+l"], "command": "toggle_setting", "args": { "setting": "line_numbers" } },
+]