| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Date: 2010/11/11 20:54:06
Author: nicm
Branch: HEAD
Tag: (none)
Log:
Flag to flush all key bindings from Rob Paisley.
Members:
cmd-unbind-key.c:1.7->1.8
tmux.1:1.188->1.189
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Date: 2010/11/11 20:51:30
Author: nicm
Branch: HEAD
Tag: (none)
Log:
Declaration in header should be extern.
Members:
tmux.h:1.245->1.246
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Date: 2010/11/01 20:59:45
Author: nicm
Branch: HEAD
Tag: (none)
Log:
Typo, from Rob Paisley.
Members:
tmux.1:1.187->1.188
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
|PatchSet 781
|Date: 2010/10/29 21:11:57
|Author: nicm
|Branch: HEAD
|Tag: (none)
|Log:
|We now send argv to the server after parsing it in the client to get the
|command, so the client should not modify it. Instead, take a copy. Fixes
|parsing command lists, reported by mcbride@.
|
|Members:
| cmd-list.c:1.5->1.6
| cmd.c:1.45->1.46
| tmux.h:1.244->1.245
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
more than zero.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Linux without.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
code.
|
|
|
|
|
|
| |
Add a last-pane command (bound to ; by default). Requested ages ago by
somebody whose name I have forgotten.
|
|
|
|
|
|
| |
When removing a pane, don't change the active pane unless the active
pane is actually the one being removed.
|
|
|
|
|
| |
Mark repeating keys with "(repeat)" in the key list.
|
|
|
|
|
|
| |
Merge the before and after attach client code into one in client.c
(instead of two in tmux.c and client.c).
|
| |
|
|
|
|
|
| |
Make stdio blocking again before calling shell command with -c.
|
|
|
|
|
|
| |
Trying to set FD_CLOEXEC on every fd is a lost cause, just use
closefrom() before exec.
|
|
|
|
| |
all files but compat.h.
|
|
|
|
|
|
| |
Fall back on normal session choice method if $TMUX exists but is invalid
rather than rejecting.
|
|
|
|
|
|
| |
Use an explicit event rather than event_once for the main event so it
can be removed when the client becomes ready.
|
|
|
|
|
|
| |
Treat the meta bit in the xterm extended modifier key set as the same as
escape (tmux's meta). From Emanuele Giaquinta.
|
|
|
|
|
| |
Put "or" on new line from command with .Ic.
|
|
|
|
|
| |
subjective.
|
| |
|
|
|
|
|
|
| |
Set cause when failing due to linking a window to itself, from Martin
Pieuchot.
|
|
|
|
|
|
| |
Skip NULL entries in the sessions list when choosing the next session,
from Simon Olofsson.
|
|
|
|
|
| |
Nuke a leftover RB tree declaration spotted by blambert.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Two new options:
- server option "exit-unattached" makes the server exit when no clients
are attached, even if sessions are present;
- session option "destroy-unattached" destroys a session once no clients
are attached to it.
These are useful for preventing tmux remaining in the background where
it is undesirable and when using tmux as a login shell to keep a limit
on new sessions.
|
|
|
|
|
|
| |
Modify the permissions on the socket when adding or removing +x to show
attached sessions, rather than replacing them.
|
|
|
|
|
| |
detach-on-destroy is a session option, not server.
|
| |
|
|
|
|
|
|
| |
Ugh. Pass the right type into tty_term_has. Teaches me to make last
minute changes :-/.
|
|
|
|
|
|
|
|
|
|
| |
Use UTF-8 line drawing characters on UTF-8 terminals. Fixes some stupid
terminals (I'm looking at you, putty) which disable the vt100 ACS mode
switching sequences in UTF-8 mode.
Also on terminals without ACS at all, use ASCII equivalents where
obvious.
|