This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/posts/2014/sublime-text-ctrl-tab-key-bindings.md
2023-12-13 12:18:32 -08:00

16 lines
880 B
Markdown

---
date: '2014-08-06'
title: 'Sublime Text 3 - ctrl + tab key bindings'
description: "I use Sublime Text as my primary text editor but have never liked the default tab behavior where ctrl + tab takes you to the most recently used tab rather than the next horizontal tab in the tab bar (ctrl + shift + tab does the reverse)."
draft: false
tags: ['Sublime Text']
---
I use [Sublime Text](http://sublimetext.com) as my primary text editor but have never liked the default tab behavior where ctrl + tab takes you to the most recently used tab rather than the next horizontal tab in the tab bar (ctrl + shift + tab does the reverse).<!-- excerpt -->
To fix this, I've added a few lines to the user key bindings file (located in Preferences > Key Bindings - User):
```json
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
```