| Commit message (Collapse) | Author | Age | ||
|---|---|---|---|---|
| ... | ||||
| | * | New option, mouse-select-pane. If on, the mouse may be used to select the | Nicholas Marriott | 2009-10-10 | |
| | | | | | | | | | | | | | current pane. Suggested by sthen@ and also by someone else ages ago who I have forgotten. | |||
| | * | There is no point setting the scroll region up for line feeds unless scrolling | Nicholas Marriott | 2009-10-10 | |
| | | | | | | | | | is actually going to happen, so don't. | |||
| | * | Add "grouped sessions" which have independent name, options, current window and | Nicholas Marriott | 2009-10-10 | |
| | | | | | | | | | | | | | | | | | so on but where the linked windows are synchronized (ie creating, killing windows and so on are mirrored between the sessions). A grouped session may be created by passing -t to new-session. Had this around for a while, tested by a couple of people. | |||
| | * | Support for individual session idle time locking. May be enabled by turning off | Nicholas Marriott | 2009-10-10 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the lock-server option (it is on by default). When this is off, each session locks when it has been idle for the lock-after-time setting. When on, the entire server locks when ALL sessions have been idle for their individual lock-after-time settings. This replaces one global-only option (lock-after-time) with another (lock-server), but the default behaviour is usually preferable so there don't seem to be many alternatives. Diff/idea largely from Thomas Adam, tweaked by me. | |||
| | * | Instead of passing a struct pollfd ** around through various functions, build | Nicholas Marriott | 2009-10-10 | |
| | | | | | | | | | | | | | | | them into a tree and then convert into a flat poll array before and after poll. This adds a little code but should reduce annoying problems with ordering when adding new things that also need to be polled. | |||
| | * | The UTF-8 detection idea doesn't work and I am reasonably happy with the | Nicholas Marriott | 2009-10-09 | |
| | | | | | | | | | current methods, so remove the (already #ifdef 0'd) code. | |||
| | * | Add a simple synchronize-panes window option: when set, all input to any pane | Nicholas Marriott | 2009-10-09 | |
| | | | | | | | | | | | that is part of the window is also sent to all other panes in the same window. Suggested by several, most recently Tomasz Pajor. | |||
| | * | Be less aggressive about turning the cursor off, only explicitly turn it off | Nicholas Marriott | 2009-10-09 | |
| | | | | | | | | | when tmux is redrawing, otherwise leave in the state set by the application. | |||
| | * | Support J and K for scroll up and scroll down in copy mode with vi keys, | Nicholas Marriott | 2009-10-07 | |
| | | | | | | | | | suggested by martynas. | |||
| | * | Fix comment. | Nicholas Marriott | 2009-10-07 | |
| | | | ||||
| | * | Accept ^? for backspace as well as BSpace. | Nicholas Marriott | 2009-10-06 | |
| | | | ||||
| | * | Remove scroll mode which is now redundant, copy mode should be used instead. | Nicholas Marriott | 2009-10-06 | |
| | | | | | | | | | The = key binding now does nothing. | |||
| | * | Make C-Up and C-Down in copy mode scroll the screen up and down one line | Nicholas Marriott | 2009-10-06 | |
| | | | | | | | | | | | without moving the cursor, like Up and Down in scroll mode (which will shortly disappear). | |||
| | * | If no target client is specified to commands which accept one, try to guess the | Nicholas Marriott | 2009-10-05 | |
| | | | | | | | | | | | | | current client, in a similar manner to how sessions already work: if the current session can be established and has only one client, use that; otherwise use the most recently created client. | |||
| | * | tweak previous; | Jason McIntyre | 2009-10-04 | |
| | | | ||||
| | * | Get / and ? the right way round in vi mode, and use : for goto line rather than | Nicholas Marriott | 2009-10-04 | |
| | | | | | | | | | g. | |||
| | * | Check for already locked/suspended clients in server_lock_client rather than | Nicholas Marriott | 2009-10-04 | |
| | | | | | | | | | its callers. | |||
| | * | Add a key string for space ("Space") and document the names, suggested by | Nicholas Marriott | 2009-10-04 | |
| | | | | | | | | | guenther@. Also document how to bind " and ', suggested by miod@. | |||
| | * | C-v and M-v too. | Nicholas Marriott | 2009-10-04 | |
| | | | ||||
| | * | Support C-n/C-p with emacs keys in choice mode, also fix a comment. | Nicholas Marriott | 2009-10-04 | |
| | | | ||||
| | * | New lock-client and lock-session commands to lock an individual client or all | Nicholas Marriott | 2009-09-24 | |
| | | | | | | | | | clients attached to a session respectively. | |||
| | * | Don't allow locked or suspended clients to limit the size of active clients. | Nicholas Marriott | 2009-09-24 | |
| | | | ||||
| | * | Remove PROMPT_HIDDEN code which is now unused. | Nicholas Marriott | 2009-09-23 | |
| | | | ||||
| | * | Support -c like sh(1) to execute a command, useful when tmux is a login | Nicholas Marriott | 2009-09-23 | |
| | | | | | | | | | | | | | | | shell. Suggested by halex@. This includes another protocol version increase (the last for now) so again restart the tmux server before upgrading. | |||
| | * | On SIGTERM, just abandon any suspended/locked clients and leave them to it, | Nicholas Marriott | 2009-09-23 | |
| | | | | | | | | | | | otherwise the server will hang around (refusing new connections) until they exit properly. | |||
| | * | Don't die if the client is detaching (the tty has been closed) after waking up | Nicholas Marriott | 2009-09-23 | |
| | | | | | | | | | from locking. | |||
| | * | Remove the internal tmux locking and instead detach each client and run the | Nicholas Marriott | 2009-09-23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | command specified by a new option "lock-command" (by default "lock -np") in each client. This means each terminal has to be unlocked individually but simplifies the code and allows the system password to be used to unlock. Note that the set-password command is gone, so it will need to be removed from configuration files, and the -U command line flag has been removed. This is the third protocol version change so again it is best to stop the tmux server before upgrading. | |||
| | * | Trim some code by moving the ioctl(TIOCGWINSZ) after SIGWINCH from the client | Nicholas Marriott | 2009-09-23 | |
| | | | | | | | | | | | | | | | into the server. This is another (the second of four) protocol version changes coming this morning, so again the server should be killed before upgrading. | |||
| | * | Don't attempt to open() the tty path, rely on the client sending its stdin fd | Nicholas Marriott | 2009-09-23 | |
| | | | | | | | | | | | | | | | | | | | with imsg and fatal if it doesn't, then set the FD_CLOEXEC flag in tty_init instead of tty_open to prevent them leaking into child processes if any are created between the two calls. This bumps the protocol version, so the tmux server should be killed before upgrading. | |||
| | * | Be more careful about what flags are cleared when opening the terminal, | Nicholas Marriott | 2009-09-22 | |
| | | | | | | | | | otherwise the opened/started flags are cleared and the terminal never released. | |||
| | * | Permit multiple prefix keys to be defined, separated by commas, for example: | Nicholas Marriott | 2009-09-22 | |
| | | | | | | | | | | | | | | | set -g prefix ^a,^b Any key in the list acts as the prefix. The send-prefix command always sends the first key in the list. | |||
| | * | Use KEYC_NONE constant instead of 0 on init. | Nicholas Marriott | 2009-09-21 | |
| | | | ||||
| | * | Nuke -i option which isn't used anymore. | Nicholas Marriott | 2009-09-21 | |
| | | | ||||
| | * | Use option print function for info messages as well. | Nicholas Marriott | 2009-09-21 | |
| | | | ||||
| | * | Move common code from show-options and show-window-options into a function. | Nicholas Marriott | 2009-09-21 | |
| | | | ||||
| | * | zap trailing whitespace; | Jason McIntyre | 2009-09-21 | |
| | | | ||||
| | * | Drop tiny union from option struct. | Nicholas Marriott | 2009-09-21 | |
| | | | ||||
| | * | Key options were implemented as a number so these struct members are unused. | Nicholas Marriott | 2009-09-21 | |
| | | | ||||
| | * | run-shell command to run a shell command without opening a window, sending | Nicholas Marriott | 2009-09-20 | |
| | | | | | | | | | stdout to output mode. | |||
| | * | Nuke unused variables and fix stupid error message. | Nicholas Marriott | 2009-09-20 | |
| | | | ||||
| | * | Move some common and untidy code for window link/unlink into generic functions | Nicholas Marriott | 2009-09-20 | |
| | | | | | | | | | instead of duplicating it in move/link window.. | |||
| | * | Regularise some fatal messages. | Nicholas Marriott | 2009-09-20 | |
| | | | ||||
| | * | New option, set-titles-string, to allow the window title to be specified (as | Nicholas Marriott | 2009-09-18 | |
| | | | | | | | | | | | for status-left/right) if set-titles is on. Also only update the title when the status line is being redrawn. | |||
| | * | Rather than constructing an entire termios struct from ttydefaults.h, just let | Nicholas Marriott | 2009-09-16 | |
| | | | | | | | | | | | forkpty do it and then alter the bits that should be changed after fork. A little neater and more portable. | |||
| | * | Enclose repeated buffer draining code in a new msgbuf_drain() | Jacek Masiulaniec | 2009-09-15 | |
| | | | | | | | | | | | | | function, which is additionally exported for use by others. From nicm@, who reminded me that tmux is now using buffer.c, too. | |||
| | * | Stick line length to what is actually used (removing an optimization that | Nicholas Marriott | 2009-09-15 | |
| | | | | | | | | | | | | | | | | | allowed it to be bigger), and use clear line/EOL sequences rather than spaces in copy/scroll mode. This fixes xterm copy/paste from tmux which treats trailing spaces differently from clearing a line with the escape sequences. Reported by martynas@. | |||
| | * | The default terminal size should be 80x24, not 80x25. | Nicholas Marriott | 2009-09-15 | |
| | | | ||||
| | * | Nuke unused server_client_index function, pointed out by martynas@. | Nicholas Marriott | 2009-09-14 | |
| | | | ||||
| | * | Doh, trim variables unused now. | Nicholas Marriott | 2009-09-12 | |
| | | | ||||
| | * | Tidy some common code for destroying sessions into a new function. | Nicholas Marriott | 2009-09-12 | |
| | | | ||||