> ## Content Index
> Fetch the complete content index at: https://www.narendravardi.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Switching between previous and next tabs in Sublime Text
- URL: https://www.narendravardi.com/switching-between-previous-and-next-tabs-in-sublime-text/
- Published: 2024-09-17T18:52:05.000Z
- Updated: 2024-12-02T08:44:15.000Z
- Description: In this article, I document how to configure sublime to switch between previous and next tabs.
- Author: Narendra Vardi
- Tags: rough-note

Here're the steps. 

1. Open Sublime
2. Click on `Settings` \-> `Key Bindings`
3. This opens a file with `Default (OSX).sublime-keymap`
4. After the first `{` insert the below text

```json
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
```

1. Save the file.

Now, we can freely move between tabs just like any other editor.

Reference: `https://stackoverflow.com/a/36020760`