feat: refactor pagination implementation

This commit is contained in:
Cory Dransfeldt 2023-03-26 17:35:46 -07:00
parent ee77555c32
commit da793fd1cc
No known key found for this signature in database
196 changed files with 2498 additions and 36 deletions

View file

@ -0,0 +1,15 @@
---
date: 2014-08-06
draft: false
title: Sublime Text 3 - ctrl + tab key bindings
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" }
```