Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Switch between tabs in Sublime Text Vintage Mode

I know we can achieve this in VIM using nerdtree and gT and gt commands. But is there any way to achieve similar kind of behaviour in Sublime Text Vintage Mode?

like image 899
murali Avatar asked Feb 15 '12 00:02

murali


1 Answers

Or (for posterity), you can just paste this in your keymap file:

{ "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 }
    ]
},
like image 191
veered Avatar answered Oct 11 '22 12:10

veered