mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 03:08:46 +00:00
Add tabs.
This commit is contained in:
parent
24d04208c7
commit
e4cf738e36
2
TODO
2
TODO
@ -57,6 +57,8 @@
|
|||||||
- would be nice if tmux could be the shell
|
- would be nice if tmux could be the shell
|
||||||
- key to switch to copy mode from scroll mode
|
- key to switch to copy mode from scroll mode
|
||||||
- flag to scroll-mode/copy-mode to automatically scroll up a page
|
- flag to scroll-mode/copy-mode to automatically scroll up a page
|
||||||
|
- some people find first window being 0 rather than 1 is awkward on the keyboard. what about a new-window-index option that sets the base at which tmux starts numbering new windows, then they can do: set -g new-window-index 1; bind 0 selectw -t:10
|
||||||
|
- suspend-client command bound to ^Z
|
||||||
|
|
||||||
soon:
|
soon:
|
||||||
- swap-pane-up, swap-pane-down
|
- swap-pane-up, swap-pane-down
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: key-string.c,v 1.15 2009-01-14 22:41:40 nicm Exp $ */
|
/* $Id: key-string.c,v 1.16 2009-01-16 19:32:29 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -47,6 +47,8 @@ struct {
|
|||||||
{ "End", KEYC_END },
|
{ "End", KEYC_END },
|
||||||
{ "NPage", KEYC_NPAGE },
|
{ "NPage", KEYC_NPAGE },
|
||||||
{ "PPage", KEYC_PPAGE },
|
{ "PPage", KEYC_PPAGE },
|
||||||
|
{ "Tab", '\011' },
|
||||||
|
{ "BTab", KEYC_BTAB },
|
||||||
|
|
||||||
/* Arrow keys. */
|
/* Arrow keys. */
|
||||||
{ "Up", KEYC_UP },
|
{ "Up", KEYC_UP },
|
||||||
|
Loading…
Reference in New Issue
Block a user