Switching between previous and next tabs in Sublime Text
In this article, I document how to configure sublime to switch between previous and next tabs.
Here're the steps.
- Open Sublime
- Click on
Settings->Key Bindings - This opens a file with
Default (OSX).sublime-keymap - After the first
{insert the below text
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },- Save the file.
Now, we can freely move between tabs just like any other editor.
Reference: https://stackoverflow.com/a/36020760