Mercurial > dotfiles
comparison qutebrowser/config.py @ 470:3b9394a0a58b
Add qutebrowser config.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 09 Apr 2019 18:58:39 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
469:07ee0d517d92 | 470:3b9394a0a58b |
---|---|
1 # Use numbers so I can type link text to filter things down. | |
2 c.hints.mode = 'number' | |
3 | |
4 # Support Ctrl-clicking links when I feel like using the mouse. | |
5 c.tabs.background = True | |
6 # Clear last tab when close it. | |
7 c.tabs.last_close = 'blank' | |
8 | |
9 # Use `b` to quickly jumb to a different tab. | |
10 config.bind('b', 'set-cmd-text -s :buffer') | |
11 # Correct way to navigate left/right between tabs! | |
12 config.bind('J', 'tab-prev') | |
13 config.bind('K', 'tab-next') | |
14 # Reorder tabs easily. | |
15 config.bind('<', 'tab-move -') | |
16 config.bind('>', 'tab-move +') |