Switch between tabs in Sublime Text Vintage Mode

余生颓废 提交于 2019-12-03 14:18:48

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.

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

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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!