From 69da0bb2aa3993626ef61e3cbe25a59b9736eb8c Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Thu, 14 Feb 2013 13:52:43 -0700 Subject: [PATCH] Add `alt-meta-left` and `alt-meta-right` bindings for tab switching These are common bindings for switching tabs. Before we used them to split views, but this is a more expected behavior. --- src/app/keymaps/editor.cson | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/keymaps/editor.cson b/src/app/keymaps/editor.cson index a56b13672..fd25c7181 100644 --- a/src/app/keymaps/editor.cson +++ b/src/app/keymaps/editor.cson @@ -23,6 +23,8 @@ 'meta-]': 'editor:indent-selected-rows' 'meta-{': 'editor:show-previous-buffer' 'meta-}': 'editor:show-next-buffer' + 'alt-meta-left': 'editor:show-previous-buffer' + 'alt-meta-right': 'editor:show-next-buffer' 'meta-1': 'editor:show-buffer-1' 'meta-2': 'editor:show-buffer-2' 'meta-3': 'editor:show-buffer-3'