470
|
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 +')
|