aboutsummaryrefslogtreecommitdiff
path: root/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap
blob: 7534f17801dc3b35d3f2ff4fce5b4cb0936971b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[
    // 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" } },

    // Fix Goto Symbol in Project
    { "keys": ["ctrl+shift+r"], "command": "goto_symbol_in_project" },

    // Reindent selected lines
    { "keys": ["ctrl+alt+r"], "command": "reindent" },
]