From 3330e4f2588f5c8e8902633dd4e932b6bf2edf4b Mon Sep 17 00:00:00 2001 From: Scott Bronson Date: Fri, 30 Nov 2012 13:44:13 -0800 Subject: [PATCH] Add support for gt and gT switching tabs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's easy, why not!  Source: http://stackoverflow.com/questions/9286504/switch-between-tabs-in-sublime-text-vintage-mode --- Default.sublime-keymap | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Default.sublime-keymap b/Default.sublime-keymap index 4711807..b7b0888 100644 --- a/Default.sublime-keymap +++ b/Default.sublime-keymap @@ -421,6 +421,21 @@ "context": [{"key": "setting.command_mode"}] }, + { + "keys": ["g", "t"], "command": "next_view", + "context": [ + { "key": "setting.command_mode", "operand": true }, + { "key": "setting.is_widget", "operand": false } + ] + }, + + { "keys": ["g", "T"], "command": "prev_view", + "context": [ + { "key": "setting.command_mode", "operand": true }, + { "key": "setting.is_widget", "operand": false } + ] + }, + { "keys": [">"], "command": "set_action", "args": {"action": "vi_indent", "description": "Indent"}, "context": [{"key": "setting.command_mode"}] },