summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/server-client.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Some unnecessary assignments and unused variables.nicm2020-04-091-5/+4
* Wait until the initial command sequence is done before sending a devicenicm2020-04-091-1/+3
* Do not ignore triple-click and send to pane.nicm2020-04-011-2/+1
* Add a way to mark environment variables as "hidden" so they can be usednicm2020-03-311-2/+3
* Add a "second click" key type which is fired for the second click of anicm2020-03-311-9/+56
* Move alternate screen into the screen rather than the pane.nicm2020-03-311-2/+2
* Add support for overlay popup boxes to show text or output temporarilynicm2020-03-241-27/+51
* Ignore default-shell (and use /bin/sh) if it invalid not just if it isnicm2020-03-171-2/+4
* Send mouse down event immediately rather than waiting for double clicknicm2020-03-161-4/+8
* Change how double and triple clicks works so that one or the other isnicm2020-03-121-11/+26
* A few fixes to make modifier keys and dragging work - need to remove thenicm2020-02-191-4/+6
* Remove unused variables from Ben Boeckel, and a Pp from jmc.nicm2020-02-111-3/+1
* Add a define for flags meaning a client is not attached, and fixnicm2020-01-281-3/+3
* If /dev/fd/X is a symlink and realpath() expands symlinks, /dev/fd/Xnicm2019-12-161-17/+1
* Instead of using large buffers in imsgs, add the data or path onto the end.nicm2019-12-161-4/+4
* Rewrite the code for reading and writing files. Now, if the client isnicm2019-12-121-128/+87
* Style nits in function arguments.nicm2019-12-031-2/+2
* Long lines and spacing fixes.nicm2019-11-281-2/+3
* Make a best effort to set xpixel and ypixel for each pane and addnicm2019-11-281-14/+3
* Limit lazy resize to panes in attached sessions only - those innicm2019-11-011-4/+18
* Add a "latest" window-size option which tries to size windows based onnicm2019-09-191-1/+22
* The resize event was never deciding to actually resize the pane if therenicm2019-08-281-32/+45
* Clear overlay on normal key press.nicm2019-07-171-1/+2
* Correctly adjust mouse position if the status line is at the top andnicm2019-07-061-4/+5
* Command prompt key presses need to avoid the command queue, GitHub issuenicm2019-07-021-20/+18
* Pass keys that aren't 0-9 on to normal key processing when display-panesnicm2019-06-261-3/+7
* Need to always check focus even if not current window.nicm2019-06-201-3/+4
* Expand command formats in %if and move the config file loading later (tonicm2019-06-201-19/+22
* Do not resize panes unless they are in an attached, active window. Fromnicm2019-06-111-2/+9
* Do not load the config file if the server is exiting because it failednicm2019-06-071-3/+5
* Merge cmd_list_parse into cmd-parse.y so it can use the new aliasnicm2019-05-251-9/+16
* Replace the various identical error callbacks with a single one in cmd-queue.c.nicm2019-05-201-14/+3
* Fix some indentation and dead assignments.nicm2019-05-121-8/+10
* Add a flag to redraw only the overlay, and remove the overlay on resize.nicm2019-05-081-3/+10
* Move around the display-panes identify code to make it a bit morenicm2019-05-071-49/+34
* Treat keys in identify mode (display-panes) specially and handle themnicm2019-05-071-2/+40
* Allow panes to be empty (no command), output can be piped to them withnicm2019-05-031-3/+2
* Do not store the mouse position we calculate as the start of a drag backnicm2019-05-031-3/+3
* Fix mouse positioning when the pane is not entirely visible.nicm2019-05-031-2/+2
* Instead of processing keys all together, put them up on the clientnicm2019-05-031-25/+40
* Update session activity on focus event, from tafryn at gmail dot com.nicm2019-04-181-1/+2
* Add StatusDefault binding for the mouse on any otherwise unassignednicm2019-03-251-19/+71
* Ignore mouse on status line which are not part of a range, GitHub issue 1649.nicm2019-03-251-10/+10
* Extend the #[] style syntax and use that together with previous formatnicm2019-03-181-11/+24
* Tidy and rename some bits of status line code.nicm2019-03-161-2/+2
* Move status line free into its own function.nicm2019-03-151-8/+2
* Store the time in the format tree rather than passing it around.nicm2019-03-141-2/+2
* Accept 0 time as a shorthand for now to format_expand_time.nicm2019-03-141-2/+2
* Allow multiple modes to be open in a pane. A stack of open modes is keptnicm2019-03-121-18/+16
* Add a separate mode struct for the active window mode if any.nicm2019-03-071-3/+6