sthen
f9c7f9a17a
typo in comment ;) ok nicm
2015-01-20 10:57:10 +00:00
nicm
16bdd970dc
Support blinking cursor mode, both the xterm CSI ?12 h/l and (the
...
backwards) screen CSI 34 h/l. From Guanpeng Xu.
2015-01-20 08:18:04 +00:00
nicm
d451502676
Make a tmux-%u directory under TMUX_TMPDIR, like TMPDIR.
2015-01-19 09:58:34 +00:00
Thomas Adam
df6488a470
Merge branch 'obsd-master'
2015-01-16 19:17:31 +00:00
deraadt
776eef49d8
Replace <sys/param.h> with <limits.h> and other less dirty headers where
...
possible. Annotate <sys/param.h> lines with their current reasons. Switch
to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc. Change
MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where
sensible to avoid pulling in the pollution. These are the files confirmed
through binary verification.
ok guenther, millert, doug (helped with the verification protocol)
2015-01-16 06:40:13 +00:00
nicm
6e764fb53e
Remove an unnecessary variable and shorten a line.
2015-01-15 13:43:13 +00:00
nicm
86207ee676
Shorten some long lines.
2015-01-15 13:35:13 +00:00
Nicholas Marriott
66e8811c64
Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code
2015-01-12 22:46:44 +00:00
Nicholas Marriott
a9644c1f8b
We do not need to add /usr/local to CPPFLAGS; if configure managed to pass then
...
the dependencies must already be in the search path. Reported by Romain Naour.
2015-01-12 22:46:06 +00:00
deraadt
8a8e2eb04a
correctly use HOST_NAME_MAX.
...
Some notes:
POSIX HOST_NAME_MAX doesn't include the NUL.
POSIX LOGIN_NAME_MAX and TTY_NAME_MAX do include the NUL.
BSD MAXHOSTNAMELEN includes the NUL. Actually, most of the historical
BSD MAX* defines did include the NUL, except for the historical
mistake of utmp fields without NULs in the string, which directly led
to strncpy.. just showing how error prone this kind of accounting is.
CSRG did right. Somehow POSIX missed the memo on the concepts of
carefulness and consistancy, and we are still paying the price when
people trip over this. Of course, glibc is even more amazing (that is
a hint to blackhats)
ok guenther
2015-01-11 04:14:40 +00:00
Thomas Adam
da72a0b7a8
Merge branch 'obsd-master'
2015-01-10 21:38:50 +00:00
nicm
aae2b7aa89
Revert to r1.16 since this is still clearly broken and I can't see how
...
right now.
2015-01-06 21:14:42 +00:00
nicm
fee096a406
Unzoom before kill, from Thomas Adam.
2015-01-06 09:12:53 +00:00
nicm
be0ad01b7c
Add missing default bindings, from Theo Buehler.
2015-01-06 09:12:02 +00:00
Nicholas Marriott
daea0e4fff
Need param.h, from Ismail Donmez.
2014-12-31 10:00:47 +00:00
Nicholas Marriott
cc1bc9717c
Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code
2014-12-21 15:47:21 +00:00
Nicholas Marriott
9cb5afe114
t_kP is the same as PageUp, so no need for it, from Daniel Hahler.
2014-12-21 15:46:43 +00:00
Thomas Adam
2a9a75a569
Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code
2014-12-19 19:23:08 +00:00
Thomas Adam
5f8138faf5
Merge branch 'obsd-master'
...
Conflicts:
format.c
2014-12-19 19:22:19 +00:00
nicm
160e3e2be3
Notify on zoom/unzoom, from George Nachmann.
2014-12-15 10:04:18 +00:00
nicm
d88c381ce9
Only redraw affected lines when selection changes with mouse. From
...
Michael Graczyk.
2014-12-15 10:02:55 +00:00
Nicholas Marriott
f495b150fa
Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code
2014-12-15 09:24:15 +00:00
Nicholas Marriott
3771ab7c67
Add missing va_end, from Thomas Jarosch.
2014-12-15 09:23:34 +00:00
nicm
7a0c94b28a
Add pane_dead_status for exit status of dead panes.
2014-12-09 19:23:35 +00:00
Nicholas Marriott
32f1ceddc9
Tweak ordering and whitespace.
2014-12-06 00:07:55 +00:00
Thomas Adam
ccbe2545d9
Merge branch 'obsd-master'
2014-12-03 08:41:08 +00:00
nicm
54ca7b230d
Add -F to if-shell to allow it to be used to check for format or option
...
values rather than executing a command.
2014-12-02 23:39:02 +00:00
nicm
575fd1e322
Permit option values to be used in formats.
2014-12-02 23:19:45 +00:00
nicm
e52d791212
Another fix for insertion from Balazs Kezes. On insertion, size the line
...
just enough for the inserted characters.
2014-12-01 22:22:14 +00:00
nicm
c8bf8ee931
Check ZOOMED flag on window.
2014-12-01 14:30:18 +00:00
nicm
c403bfc894
Remove dead code, from Thomas Adam.
2014-11-30 08:03:29 +00:00
millert
a3612a5472
Prefer setvbuf() to setlinebuf() for portability; ok deraadt@
2014-11-26 18:34:51 +00:00
Thomas Adam
3e8efcc555
Merge branch 'obsd-master'
2014-11-19 09:22:03 +00:00
nicm
e0929262db
Label windows which are smaller than expected with a reason.
2014-11-14 02:19:47 +00:00
nicm
7cc4706646
Restore change in r1.17 but add checks to prevent the line length
...
overflowing, from Balazs Kezes.
2014-11-12 22:59:45 +00:00
nicm
d37f266524
Add -b to splitw like joinw, from Felix Rosencrantz.
2014-11-12 22:57:06 +00:00
Thomas Adam
bd803e82e9
Merge branch 'obsd-master'
2014-11-12 21:58:05 +00:00
nicm
f9308bc244
Don't let force-width or force-height be < PANE_MINIMUM.
2014-11-12 16:00:03 +00:00
nicm
7697f5aa8f
Revert r1.17 as it breaks inserting in some cases.
2014-11-10 19:53:32 +00:00
nicm
4429941668
Expand formats in copy-pipe command, suggested by Suraj N Kurapati.
2014-11-09 15:13:01 +00:00
Thomas Adam
fc05bf255a
Merge branch 'obsd-master'
2014-11-09 00:15:51 +00:00
nicm
8f1302282b
Two improvements to reflow from Balazs Kezes:
...
- Don't extend the line to full width on insert/delete character which
means leaves extra spaces when reflowing.
- Only mark a line wrapped when the cursor actually goes off the end,
not on newlines which can be used for positioning.
2014-11-08 12:58:31 +00:00
nicm
c6129f9c09
Empty strings should be false too for #{?}, from Marc Finet.
2014-11-08 12:50:38 +00:00
Nicholas Marriott
747cab4281
No need for $Id$ now.
2014-11-08 12:27:43 +00:00
nicm
3c12b477d3
V should be vi not emacs, also sort. From Theo Buehler.
2014-11-07 12:28:28 +00:00
Nicholas Marriott
d2c9168954
+.
2014-11-06 23:30:02 +00:00
Nicholas Marriott
218b181985
Use KERN_PROC_CWD if supported, from Tiwei Bie.
2014-11-06 14:00:56 +00:00
nicm
7445d303e0
Wrap when copy mode is used for output, from Balazs Kezes.
2014-11-06 10:56:44 +00:00
Nicholas Marriott
6ca8c58462
Use -a for terminal-overrides from Daniel Hahler.
2014-11-06 10:30:05 +00:00
nicm
e4bf1e5128
Add V for select line with vi(1) keys. From Juho Pohjala.
2014-11-06 09:17:25 +00:00