Commit Graph

2293 Commits

Author SHA1 Message Date
e811132b05 Merge branch 'obsd-master' 2018-08-18 23:02:40 +01:00
bd2896b65e SESSION_UNATTACHED flag is no longer necessary now we have an attached
count instead.
2018-08-18 20:08:52 +00:00
522d751eee Merge branch 'obsd-master' 2018-08-18 19:02:39 +01:00
3bc08b0dc0 Some tidying and helper functions. 2018-08-18 16:14:03 +00:00
a368548645 Merge branch 'obsd-master' 2018-08-10 11:41:07 +01:00
a5ef1f2ed6 Bump the UTF-8 character array up to 18 to allow for more combining
characters (some languages use up to five). This size doesn't make as
much difference now that UTF-8 goes into an extended cell. GitHub issue
1430.
2018-08-09 09:53:44 +00:00
33f9b316a3 Merge branch 'obsd-master' 2018-08-02 21:02:25 +01:00
d6ff630498 Log command arguments. 2018-08-02 18:35:21 +00:00
eceaa9a493 Merge branch 'obsd-master' 2018-08-02 15:02:25 +01:00
2e19a5ecb9 Merge branch 'obsd-master' 2018-08-02 13:02:26 +01:00
fb1f0fee5a session_groups can be static also. 2018-08-02 11:56:12 +00:00
f12b857415 Minor tidying. 2018-08-02 11:18:34 +00:00
79bdca4638 Merge branch 'obsd-master' 2018-08-02 11:02:25 +01:00
21f8ac2766 Make display-panes block the client until a pane is chosen or it times out. 2018-08-02 07:55:16 +00:00
400b807d75 Merge branch 'obsd-master' 2018-07-31 17:02:31 +01:00
82776c456e Move struct screen_sel into screen.c and tidy up members that are only
used by copy mode.
2018-07-31 11:49:26 +00:00
ed6327c87b Merge branch 'obsd-master' 2018-07-30 13:02:25 +01:00
b21a710de7 Remove a leftover unused struct. 2018-07-30 11:24:55 +00:00
4f04b2094c Merge branch 'obsd-master' 2018-07-16 11:02:25 +01:00
0d88f8a78b Add an "Any" key to run a command if a key is pressed that is not bound
in the current key table. GitHub issue 1404.
2018-07-16 08:48:22 +00:00
20154f391e Merge branch 'obsd-master' 2018-07-04 15:02:25 +01:00
cc743dc296 Add set-hook -R to run a hook immediately (useful to set multiple hooks
to the same thing).
2018-07-04 12:30:52 +00:00
850c26dd46 Merge branch 'obsd-master' 2018-07-04 13:02:25 +01:00
2fae6a5761 Add accessors for grid linedata member, for some future work. From Dan
Aloni.
2018-07-04 09:44:07 +00:00
4581240ced Merge branch 'obsd-master' 2018-06-08 23:02:25 +01:00
f6bad7efd7 Instead of working out which pane to resize with the mouse by walking
the panes list, look through the layout cells for the nearest border and
resize that cell. From Dan Aloni in GitHub issue 1374.
2018-06-08 20:54:22 +00:00
7448b38327 Merge branch 'obsd-master' 2018-05-24 13:02:29 +01:00
b9a6162d2f Make server_client_get_cwd used (almost) everywhere we need to work out
the cwd, and do not fall back to "." as it is pretty useless. GitHub
issue 1331.
2018-05-24 09:42:49 +00:00
0e1b339c10 Merge branch 'obsd-master' 2018-04-18 17:02:28 +01:00
3dceddd70e Change how display-message uses the client. Originally it was only
intended as the target client where the message should be displayed but
at some point (perhaps when -p was added), it was used for format
expansion too. This means it can get a bit weird where you have client
formats expanding for a client with a different current session than the
target session.

However, it is nice that display-message can be used to show information
about a specific client. So change so that the -c client will be used if
the session matches the target session (-t or default), otherwise the
best client will be chosen.
2018-04-18 14:35:37 +00:00
1bd66b65a3 Merge branch 'obsd-master' 2018-04-10 13:02:28 +01:00
c6975b3bb4 Add x and X to choose-tree (with a confirmation prompt) to kill an
item. Suggested by Matt Zagrabelny.
2018-04-10 10:48:44 +00:00
0ca78ee51f Merge branch 'obsd-master' 2018-03-16 16:02:28 +00:00
f87d80737e Insert full size panes at the right position, from KOIE Hidetaka in
GitHub issue 1284.
2018-03-16 15:15:39 +00:00
9fd9952752 Merge branch 'obsd-master' 2018-03-08 10:02:26 +00:00
19f3a5c612 Add a missing client-detached hook when the server shuts down, and do
not exit until jobs started from run-shell/if-shell have finished (add a
job flags member and a flag to indicate other jobs). GitHub issue 1245.
2018-03-08 08:09:10 +00:00
0ca9664ecf Merge branch 'obsd-master' 2018-02-28 10:02:29 +00:00
508e2f0b3a Add -Z flag to choose-tree, choose-client, choose-buffer to
automatically zoom the pane when the mode is entered and unzoom when it
exits, assuming the pane is not already zoomed. Add -Z to the default
key bindings.
2018-02-28 08:55:44 +00:00
968296bb07 Merge branch 'obsd-master' 2018-02-16 12:02:29 +00:00
320abba341 Reflowing the grid in-place involved way too much memmove() for a big
performance cost with a large history. Instead change back to using a
second grid and copying modified lines over which is much faster (this
doesn't revert to the old code however which didn't support UTF-8
properly). GitHub issue 1249.
2018-02-16 09:51:41 +00:00
88711e885e Merge branch 'obsd-master' 2018-02-05 10:02:31 +00:00
7f4513ec34 Add struct status_line to hold status line members of struct client, not
used yet but will be soon. From Thomas Adam.
2018-02-05 08:21:54 +00:00
24abfb72eb Merge branch 'obsd-master' 2018-02-04 12:02:24 +00:00
fe7a871a23 Upstream ncurses has introduced terminfo capabilities to specify RGB
colour ("true" or "direct" colour). These consist of new entries (such
as "xterm-direct") which have a different setaf/setab implementation,
colors and pairs set to 0x1000000 and 0x10000, and a new RGB flag.

The setaf/setab definitions seem to be geared towards what ncurses (or
emacs maybe) needs, in that the new versions do only ANSI and RGB
colours (they can't be used for the 256 colour palette); they rely on
the silly ISO colon-separated version of SGR; and they use a weird
multiplication scheme so they still only need one argument. The higher
values of colors and pairs require a recent ncurses to parse.

tmux can use the RGB flag to detect RGB colour support (keeping the old
Tc extension for backwards compatibility for now). However, as we still
want to send 256 colour information unchanged when possible, the new
setaf/setab are awkward. So when RGB is present, reserve setaf/setab
only for ANSI colours and use the escape sequences directly for 256 and
RGB colours. (To my knowledge no recent terminal uses unusual escape
sequences for these in any case.)
2018-02-04 10:10:39 +00:00
d9e740f86d Merge branch 'obsd-master' 2018-01-18 08:02:30 +00:00
c9037fde1c Remove unused hooks_run function, from Thomas Adam. 2018-01-18 07:10:53 +00:00
74ecc866cf Merge branch 'obsd-master' 2017-12-19 16:01:20 +00:00
b20a00f93e Report better error from server when socket create fails, GitHub issue
1201.
2017-12-19 15:00:39 +00:00
102df8dc80 Merge branch 'obsd-master' 2017-11-15 22:01:22 +00:00
e755ca37b3 Merge branch 'obsd-master' 2017-11-15 20:01:22 +00:00