aboutsummaryrefslogtreecommitdiff
path: root/server-client.c
Commit message (Collapse)AuthorAge
* Spacing/style nits.nicm2022-05-30
|
* Add a capability for OSC 7 and use it similarly to how the title is setnicm2022-03-24
| | | | (and controlled by the same set-titles option). GitHub issue 3127.
* Add argument to refresh-client -l to forward clipboard to a pane. GitHubnicm2022-03-08
| | | | issue 3068.
* Support more mouse buttons when the terminal sends them, GitHub issuenicm2022-02-16
| | | | 3055.
* Leave the hardware cursor at the position of the selected line in choosenicm2021-11-15
| | | | | | modes and current editing position and at the command prompt. It is invisible but this is helpful for people using screen readers. GitHub issue 2970.
* Allow detach even if suspend flag set, GitHub issue 2932.nicm2021-10-28
|
* Make positions hidden by overlays range-based rather than character-based,nicm2021-10-11
| | | | from Anindya Mukherjee.
* Do not call recalculate_sizes while clearing a client session because itnicm2021-09-27
| | | | | | | needs to loop over the clients, instead do it after all clients are cleared. Fixes a crash reported by martijn@ when a session with multiple clients attached is destroyed, but there are other sessions so tmux does not entirely exit. ok deraadt
* Replace %% in command lists (by copying them) for template arguments ,nicm2021-08-27
| | | | | this means they can be used with {} as well. Also make argument processing from an existing vector preserve commands. GitHub issue 2858.
* Allow control mode clients to set a hard limit on the window width andnicm2021-08-27
| | | | height, GitHub issue 2594.
* Do not double free expanded path in source-file, also remove somenicm2021-08-22
| | | | unnecessary assignments.
* Stop caring about empty commands, just treat as a null command.nicm2021-08-21
|
* Remove some unnecessary blank lines.nicm2021-08-20
|
* Remove stray spaces after function names.nicm2021-08-20
|
* Add a menu when a popup is present (mouse only for now).nicm2021-08-13
|
* Change focus to be driven by events rather than walking all panes at endnicm2021-08-13
| | | | | of event loop, this way the ordering of in and out can be enforced. GitHub issue 2808.
* Do not freeze output in panes when a popup is open, let them continue tonicm2021-08-05
| | | | redraw. From Anindya Mukherjee .
* Add a client-active hook, from ncfavier in GitHub issue 2803.nicm2021-08-04
|
* Do not close popups on resize, instead adjust them to fit, from Anindyanicm2021-07-21
| | | | Mukherjee.
* Improve logging of screen mode changes.nicm2021-06-10
|
* Change resize timers and flags into one timer and a queue which isnicm2021-06-10
| | | | | simpler and fixes problems with vim when resized multiple times. GitHub issue 2677.
* Adjust latest client when a client detaches, GitHub issue 2657.nicm2021-06-10
|
* Add a flag to disable keys to close a message, GitHub issue 2625.nicm2021-04-12
|
* Move client-detached into server_client_lost so it is fired even if anicm2021-04-05
| | | | client is closed unexpectedly.
* Move the call to setupterm() into the client and have it pass thenicm2021-02-17
| | | | | | results to the server over imsg, means the server does not need to enter ncurses or read terminfo db. Old clients will not work with a new server.
* Move file handling protocol stuff all into file.c so it can be reusednicm2021-02-11
| | | | more easily.
* Include "focused" in client flags, from Dan Aloni in GitHub issue 2558.nicm2021-02-08
|
* Hide some warnings on newer GCC versions, GitHUb issue 2525.nicm2021-01-18
|
* Redraw any visible modes when status line changes so that formats likenicm2020-12-03
| | | | | the pane title are updated. GitHub issue 2487. Also a man page fix from jmc.
* With csh, a tmux client gets SIGTERM before SIGCONT when killed withnicm2020-10-30
| | | | | | | "kill %%", so when the client tells the server it got SIGCONT, don't use bits that may already have been freed when it got SIGTERM. Also don't print anything on exit if we get SIGTERM while suspended. Reported by Theo.
* There is no reason not to fire focus events when a pane is in a mode,nicm2020-10-30
| | | | GitHub issue 2372.
* Add a -O flag to display-menu to change the mouse behaviour and notnicm2020-10-30
| | | | | close the menu when the mouse is released, from teo_paul1 at yahoo dot com.
* Do not require that there be no other clients before loading the config,nicm2020-10-28
| | | | being the first client is enough. GitHub issue 2438.
* Fix warnings on some platforms with %llx and add a new message to handlenicm2020-09-22
| | | | 64-bit client flags.
* Change searching to behave more like emacs and so that regex searchingnicm2020-08-05
| | | | doesn't overlap when searching forwards.
* Add a way for control mode clients to subscribe to a format and benicm2020-07-06
| | | | notified of changes rather than having to poll. GitHub issue 2242.
* Add a flag to make a client wait for an empty line before exiting innicm2020-06-18
| | | | control mode to avoid stray commands ending up in the shell.
* Instead of a buffer size limit on each pane, set a limit of 300 secondsnicm2020-06-10
| | | | of data for each client in control mode.
* Change how panes are resized so that the code is clearer and if the panenicm2020-06-05
| | | | | | is resized multiple times during one event loop, it is forced to resize at the end. Also don't zoom/unzoom in switch-client if the pane hasn't changed. GitHub issue 2260.
* Add support for pausing a pane when the output buffered for a controlnicm2020-06-05
| | | | | | mode client gets too far behind. The pause-after flag with a time is set on the pane with refresh-client -f and a paused pane may be resumed with refresh-client -A. GitHub issue 2217.
* Use CLOCK_MONOTONIC for timer measurement and add a timestamp to controlnicm2020-06-02
| | | | mode %output blocks.
* Check the right thing for maximum client buffer size.nicm2020-06-01
|
* Instead of sending all data to control mode clients as fast as possible,nicm2020-06-01
| | | | | | add a limit of how much data will be sent to the client and try to use it for panes with some degree of fairness. GitHub issue 2217, with George Nachman.
* Pass the stdout file descriptor from the client as well as stdin and usenicm2020-05-26
| | | | | them for control clients directly instead of passing everything via the client.
* Remove leftover call to control_free_offsets and do not use fornicm2020-05-24
| | | | non-control clients.
* Give control code its own state struct.nicm2020-05-24
|
* Now the tty has a pointer back to the client there is no point (and anicm2020-05-24
| | | | bit confusing) in it keeping a copy of the fd as well. Remove it.
* FocusIn keys can also update the latest client, like normal keys.nicm2020-05-22
|
* Move client offset stuff into control.c since only control clients willnicm2020-05-22
| | | | need it.
* Support code for control mode flow control: allow clients to havenicm2020-05-21
| | | | | | separate offsets (used and acknowleged) into the pane buffers; turn off reading from panes when no clients can accept the data; and add a -A flag to refresh-client to let clients turn receiving a pane on and off.