aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
Commit message (Collapse)AuthorAge
* Merge branch 'obsd-master'Thomas Adam2020-01-28
|\
| * If ALL clients are readonly, allow them to affect the size, suggested by ↵nicm2020-01-28
| | | | | | | | Thomas Sattler.
* | Merge branch 'obsd-master'Thomas Adam2020-01-28
|\|
| * If we can identify the terminal as iTerm2 or as tmux, we can be surenicm2020-01-28
| | | | | | | | they support 256 and RGB colours, so set those flags too.
* | Merge branch 'obsd-master'Thomas Adam2020-01-28
|\|
| * Reduce a difference with portable tmux by adding the -V flag andnicm2020-01-28
| | | | | | | | #{version} format; on OpenBSD these just report the OpenBSD version.
* | Merge branch 'obsd-master'Thomas Adam2020-01-28
|\|
| * Add a define for flags meaning a client is not attached, and fixnicm2020-01-28
| | | | | | | | unattached counter, reported by Thomas Sattler.
* | Merge branch 'obsd-master'Thomas Adam2020-01-27
|\|
| * Add support for adding a note to a key binding (with bind-key -N) andnicm2020-01-27
| | | | | | | | | | | | | | | | | | | | | | | | use this to add descriptions to the default key bindings. A new -N flag to list-keys shows key bindings with notes rather than the default bind-key command used to create them. Change the default ? binding to use this to show a readable summary of keys. Also extend command-prompt to return the name of the key pressed and add a default binding (/) to show the note for the next key pressed Suggested by Alex Tremblay in GitHub issue 2000.
* | Merge branch 'obsd-master'Thomas Adam2020-01-13
|\|
| * Stop handling DA and DSR after a second (they should be the first thingnicm2020-01-13
| | | | | | | | sent) so this should be plenty.
* | Merge branch 'obsd-master'Thomas Adam2020-01-13
|\|
| * Be more specific in the DSR we are looking for so it doesn't getnicm2020-01-13
| | | | | | | | | | | | confused with mouse sequences. Also set a flag and don't bother checking for it if we have already seen it (same for DA), and don't check if we never asked for it.
| * Treat plausible but invalid keys (like C-BSpace) as literal like anynicm2020-01-13
| | | | | | | | | | other unrecognised string passed to send-keys. Reported by Anthony Sottile in GitHub issue 2049.
* | Merge branch 'obsd-master'Thomas Adam2020-01-12
|\|
| * The terminal type was never as much use as I expected so remove it innicm2020-01-12
| | | | | | | | | | favour of a couple of flags for the features used (DECSLRM and DECFRA). Also rename the flag for no xenl to be more obvious while here.
* | Merge branch 'obsd-master'Thomas Adam2019-12-30
|\|
| * Do not let readonly clients limit the size, suggested by Max Barracloughnicm2019-12-30
| | | | | | | | in GitHub issue 2042.
* | Merge branch 'obsd-master'Thomas Adam2019-12-26
|\|
| * Add a number of new formats to inspect what sessions and clients anicm2019-12-26
| | | | | | | | window is present or active in. From Tyler Culp in GitHub issue 2034.
* | Merge branch 'obsd-master'Thomas Adam2019-12-19
|\|
| * When adding a list with multiple commands to the queue, the next item tonicm2019-12-19
| | | | | | | | | | insert after needs to be the last one added, not the first. Reported by Jason Kim in GitHub issue 2023.
* | Merge branch 'obsd-master'Thomas Adam2019-12-16
|\|
| * If /dev/fd/X is a symlink and realpath() expands symlinks, /dev/fd/Xnicm2019-12-16
| | | | | | | | | | | | | | ends up pointing to the wrong place before it is passed to the client. The path is only used internally so there is no real need for realpath(), remove it and move the get_path function to file.c where all the callers are.
| * Instead of using large buffers in imsgs, add the data or path onto the end.nicm2019-12-16
| |
* | Merge branch 'obsd-master'Thomas Adam2019-12-12
|\|
| * Change source-file to use new file code which allows it to read fromnicm2019-12-12
| | | | | | | | stdin.
| * Rewrite the code for reading and writing files. Now, if the client isnicm2019-12-12
| | | | | | | | | | | | | | | | | | not attached, the server process asks it to open the file, similar to how works for stdin, stdout, stderr. This makes special files like /dev/fd/X work (used by some shells). stdin, stdout and stderr and control mode are now just special cases of the same mechanism. This will also make it easier to use for other commands that read files such as source-file.
* | Merge branch 'obsd-master'Thomas Adam2019-12-10
|\|
| * Make TMUX_CONF a list of files and expand leading $FOO or ~.nicm2019-12-10
| |
* | Merge branch 'obsd-master'Thomas Adam2019-11-28
|\|
| * Long lines and spacing fixes.nicm2019-11-28
| |
| * Make a best effort to set xpixel and ypixel for each pane and addnicm2019-11-28
| | | | | | | | formats for them.
| * Store xpixel/ypixel from TIOCGWINSZ and add formats.nicm2019-11-28
| |
* | Merge branch 'obsd-master'Thomas Adam2019-11-25
|\|
| * Add p format modifier for padding to width.nicm2019-11-25
| |
* | Merge branch 'obsd-master'Thomas Adam2019-11-15
|\|
| * Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path).nicm2019-11-15
| |
* | Merge branch 'obsd-master'Thomas Adam2019-11-14
|\|
| * Fix parsing of DA with only one argument in the response and add 65 for VT520.nicm2019-11-14
| |
* | Merge branch 'obsd-master'Thomas Adam2019-10-23
|\|
| * Use the existing code in format.c to add foramts for word and line atnicm2019-10-23
| | | | | | | | cursor position in copy mode, from Anindya Mukherjee.
* | Merge branch 'obsd-master'Thomas Adam2019-09-23
|\|
| * Use the correct size for new windows when window-size is latest,nicm2019-09-23
| | | | | | | | reported by Vamsi Krishna Avula in GitHub issue 1917.
* | Merge branch 'obsd-master'Thomas Adam2019-09-19
|\|
| * Add a "latest" window-size option which tries to size windows based onnicm2019-09-19
| | | | | | | | | | the most recently used client. From Tommie Gannert in GitHub issue 1869 based on earlier changes from me.
* | Merge branch 'obsd-master'Thomas Adam2019-09-16
|\|
| * Add push-default and pop-default in styles to change the default coloursnicm2019-09-15
| | | | | | | | | | | | and attributes and use them to restore the previous behaviour of window-status-style being the default for window-status-format in the status line. From John Drouhard in GitHub issue 1912.
* | Merge branch 'obsd-master'Thomas Adam2019-08-28
|\|