summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/server-client.c
AgeCommit message (Expand)Author
2022-03-08Add argument to refresh-client -l to forward clipboard to a pane. GitHubNicholas Marriott
2022-02-16Support more mouse buttons when the terminal sends them, GitHub issueNicholas Marriott
2021-11-15Leave the hardware cursor at the position of the selected line in chooseNicholas Marriott
2021-10-28Allow detach even if suspend flag set, GitHub issue 2932.Nicholas Marriott
2021-10-11Make positions hidden by overlays range-based rather than character-based,Nicholas Marriott
2021-09-27Do not call recalculate_sizes while clearing a client session because itNicholas Marriott
2021-08-27Replace %% in command lists (by copying them) for template arguments ,Nicholas Marriott
2021-08-27Allow control mode clients to set a hard limit on the window width andNicholas Marriott
2021-08-22Do not double free expanded path in source-file, also remove someNicholas Marriott
2021-08-21Stop caring about empty commands, just treat as a null command.Nicholas Marriott
2021-08-20Remove some unnecessary blank lines.Nicholas Marriott
2021-08-20Remove stray spaces after function names.Nicholas Marriott
2021-08-13Add a menu when a popup is present (mouse only for now).Nicholas Marriott
2021-08-13Change focus to be driven by events rather than walking all panes at endNicholas Marriott
2021-08-05Do not freeze output in panes when a popup is open, let them continue toNicholas Marriott
2021-08-04Add a client-active hook, from ncfavier in GitHub issue 2803.Nicholas Marriott
2021-07-21Do not close popups on resize, instead adjust them to fit, from AnindyaNicholas Marriott
2021-06-10Improve logging of screen mode changes.Nicholas Marriott
2021-06-10Change resize timers and flags into one timer and a queue which isNicholas Marriott
2021-06-10Adjust latest client when a client detaches, GitHub issue 2657.Nicholas Marriott
2021-04-12Add a flag to disable keys to close a message, GitHub issue 2625.Nicholas Marriott
2021-04-05Move client-detached into server_client_lost so it is fired even if aNicholas Marriott
2021-02-17Move the call to setupterm() into the client and have it pass theNicholas Marriott
2021-02-11Move file handling protocol stuff all into file.c so it can be reusedNicholas Marriott
2021-02-08Include "focused" in client flags, from Dan Aloni in GitHub issue 2558.Nicholas Marriott
2021-01-18Hide some warnings on newer GCC versions, GitHUb issue 2525.Nicholas Marriott
2020-12-03Redraw any visible modes when status line changes so that formats likeNicholas Marriott
2020-10-30With csh, a tmux client gets SIGTERM before SIGCONT when killed withNicholas Marriott
2020-10-30There is no reason not to fire focus events when a pane is in a mode,Nicholas Marriott
2020-10-30Add a -O flag to display-menu to change the mouse behaviour and notNicholas Marriott
2020-10-28Do not require that there be no other clients before loading the config,Nicholas Marriott
2020-09-22Fix warnings on some platforms with %llx and add a new message to handleNicholas Marriott
2020-08-05Change searching to behave more like emacs and so that regex searchingNicholas Marriott
2020-07-06Add a way for control mode clients to subscribe to a format and beNicholas Marriott
2020-06-18Add a flag to make a client wait for an empty line before exiting inNicholas Marriott
2020-06-10Instead of a buffer size limit on each pane, set a limit of 300 secondsNicholas Marriott
2020-06-05Change how panes are resized so that the code is clearer and if the paneNicholas Marriott
2020-06-05Add support for pausing a pane when the output buffered for a controlNicholas Marriott
2020-06-02Use CLOCK_MONOTONIC for timer measurement and add a timestamp to controlNicholas Marriott
2020-06-01Check the right thing for maximum client buffer size.Nicholas Marriott
2020-06-01Instead of sending all data to control mode clients as fast as possible,Nicholas Marriott
2020-05-26Pass the stdout file descriptor from the client as well as stdin and useNicholas Marriott
2020-05-24Remove leftover call to control_free_offsets and do not use forNicholas Marriott
2020-05-24Give control code its own state struct.Nicholas Marriott
2020-05-24Now the tty has a pointer back to the client there is no point (and aNicholas Marriott
2020-05-22FocusIn keys can also update the latest client, like normal keys.Nicholas Marriott
2020-05-22Move client offset stuff into control.c since only control clients willNicholas Marriott
2020-05-21Support code for control mode flow control: allow clients to haveNicholas Marriott
2020-05-16Move lazy resize from the pane to the window, there is no point inNicholas Marriott
2020-05-16Separate key flags and modifiers, log key flags, make the "xterm" flagNicholas Marriott