murali
murali

Reputation: 237

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?

Upvotes: 7

Views: 9400

Answers (3)

veered
veered

Reputation: 638

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 }
    ]
},

Upvotes: 32

romainl
romainl

Reputation: 196916

I don't think Vintage mode has these bound to gt, gT or anything but Ctrl+Tab and Ctrl+Shift+Tab do exactly the same thing as gt and gT, whether you are in Vintage mode (INSERT or NORMAL) or not.

You know, there is a very easy way to find the shortcuts used by an application: just look at the menu bar. That's what I did for you and it took less than 30 seconds.

Upvotes: 6

Maikel D
Maikel D

Reputation: 301

Installing Vintageous on ST3 will give you much more than the default Vintage package provides.

Upvotes: 1

Related Questions