Skip to content

Commit

Permalink
Add a note in the keymap files about destroying the current pane
Browse files Browse the repository at this point in the history
  • Loading branch information
adzenith committed Sep 26, 2013
1 parent 6f4c764 commit c46be3d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Default (Linux).sublime-keymap
Expand Up @@ -23,7 +23,9 @@
{ "keys": ["ctrl+k", "ctrl+shift+right"], "command": "destroy_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "ctrl+shift+down"], "command": "destroy_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "ctrl+shift+left"], "command": "destroy_pane", "args": {"direction": "left"} },

// You can also destroy the current pane by binding the following command:
// { "keys": [], "command": "destroy_pane", "args": {"direction": "self"} },

{ "keys": ["ctrl+k", "ctrl+alt+up"], "command": "create_pane_with_file", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "ctrl+alt+right"], "command": "create_pane_with_file", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "ctrl+alt+down"], "command": "create_pane_with_file", "args": {"direction": "down"} },
Expand Down
4 changes: 3 additions & 1 deletion Default (OSX).sublime-keymap
Expand Up @@ -23,7 +23,9 @@
{ "keys": ["super+k", "super+shift+right"], "command": "destroy_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "super+shift+down"], "command": "destroy_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "super+shift+left"], "command": "destroy_pane", "args": {"direction": "left"} },

// You can also destroy the current pane by binding the following command:
// { "keys": [], "command": "destroy_pane", "args": {"direction": "self"} },

{ "keys": ["super+k", "super+alt+up"], "command": "create_pane_with_file", "args": {"direction": "up"} },
{ "keys": ["super+k", "super+alt+right"], "command": "create_pane_with_file", "args": {"direction": "right"} },
{ "keys": ["super+k", "super+alt+down"], "command": "create_pane_with_file", "args": {"direction": "down"} },
Expand Down
4 changes: 3 additions & 1 deletion Default (Windows).sublime-keymap
Expand Up @@ -23,7 +23,9 @@
{ "keys": ["ctrl+k", "ctrl+shift+right"], "command": "destroy_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "ctrl+shift+down"], "command": "destroy_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "ctrl+shift+left"], "command": "destroy_pane", "args": {"direction": "left"} },

// You can also destroy the current pane by binding the following command:
// { "keys": [], "command": "destroy_pane", "args": {"direction": "self"} },

{ "keys": ["ctrl+k", "ctrl+alt+up"], "command": "create_pane_with_file", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "ctrl+alt+right"], "command": "create_pane_with_file", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "ctrl+alt+down"], "command": "create_pane_with_file", "args": {"direction": "down"} },
Expand Down

0 comments on commit c46be3d

Please sign in to comment.