aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Do not redraw or update mode if nothing has changed.nicm2020-05-16
|
* Add feature and capabilities for focus reporting. Also document AX andnicm2020-05-16
| | | | XT even though they aren't tmux's, and add some bits for rxvt.
* Move terminal features into a single file.nicm2020-05-16
|
* Build list of paths and weed out duplicates before loading configs, andnicm2020-05-16
| | | | add TMUX_SOCK like TMUX_PATH for the socket directory.
* Add extension terminfo(5) capabilities for margins.nicm2020-05-16
|
* Response is iTerm2 not not ITerm2.nicm2020-05-16
|
* Remove support for iTerm2's DSR 1337 extension and use the CSI > qnicm2020-05-16
| | | | extension now supported by a few different terminals.
* Add an attribute for ACS.nicm2020-05-16
|
* Tweak the default choose modes formats:nicm2020-05-16
| | | | | | - Only show pane title if it is not default and not empty. - Add a prettier time format and use that instead of long ctime(). - Remove clutter and change the order.
* imsg.h needs uio.h, pointed out by deraadtnicm2020-05-08
|
* Do not remove the automatic-rename option from the global set, only fromnicm2020-04-30
| | | | | the window (it must stay in the global set or tmux will crash). GitHub issue 2188.
* Do not close the stdout file descriptor in control mode as it will benicm2020-04-27
| | | | | needed for printing the exit messages. Fixes a bug when detaching with iTerm2.
* ce examples of "Ar arg Ar arg" with "Ar arg arg" and stop the spread;jmc2020-04-23
|
* Overrides need to be applied both before and after features in case theynicm2020-04-23
| | | | change flags used to detect a feature.
* Fix a couple of memory leaks, one when creating a new pane and one whennicm2020-04-23
| | | | adding formats onto the queue item.
* Fix a couple of memory leaks, one when creating a new pane and one whennicm2020-04-23
| | | | adding formats onto the queue item.
* Improve join-pane, move-pane and break-pane:nicm2020-04-22
| | | | | | | | | | | - There is no need for join-pane and move-pane to be different. - break-pane can just behave like move-window if the source has only one pane, instead of failing. - Add -a to break-pane like move-window. Also add missing man page bits for previous window-tree.c changes. GitHub issue 2176.
* Indicate the marked pane in choose mode in reverse and add key to setnicm2020-04-22
| | | | and clear it (m and M) and a key to jump to the starting pane (H).
* Improve join-pane, move-pane and break-pane:nicm2020-04-22
| | | | | | | | | | | - There is no need for join-pane and move-pane to be different. - break-pane can just behave like move-window if the source has only one pane, instead of failing. - Add -a to break-pane like move-window. Also add missing man page bits for previous window-tree.c changes. GitHub issue 2176.
* Indicate the marked pane in choose mode in reverse and add key to setnicm2020-04-22
| | | | and clear it (m and M) and a key to jump to the starting pane (H).
* Add a session_marked format like window_marked.nicm2020-04-22
|
* Update the cursor position when deleting lines from screens withoutnicm2020-04-22
| | | | history, GitHub issue 2173.
* Change so main-pane-width and height can be given as a percentage.nicm2020-04-22
|
* Update the cursor position when deleting lines from screens withoutnicm2020-04-22
| | | | history, GitHub issue 2173.
* Change so main-pane-width and height can be given as a percentage.nicm2020-04-22
|
* Move the background colour to clear with (if any) up as well as the datanicm2020-04-21
| | | | when scrolling, redraw problem reported by sthen@.
* 256 and RGB features can imply AX (for aixterm colours).nicm2020-04-21
|
* Turn off the block flag to reset the state or the cursor will not benicm2020-04-21
| | | | moved back to the right place.
* Do not clear client pane redraw flags until the redraw actually happens.nicm2020-04-21
|
* 256 and RGB features can imply AX (for aixterm colours).nicm2020-04-21
|
* Turn off the block flag to reset the state or the cursor will not benicm2020-04-21
| | | | moved back to the right place.
* Do not clear client pane redraw flags until the redraw actually happens.nicm2020-04-21
|
* xterm* needs XT also.nicm2020-04-21
|
* Always start sync for output in panes that are not the active pane.nicm2020-04-20
|
* Apply terminal-overrides after terminal detection, it always takesnicm2020-04-20
| | | | precedence.
* Change how sync works to always send the end sequence after all outputnicm2020-04-20
| | | | | is done when we are returning to the event loop (since we always move the cursor at that point). Also a man fix from jmc.
* Change the Sync capability to be a string instead of a flag.nicm2020-04-20
|
* Tidy up the terminal detection and feature code and add named sets ofnicm2020-04-20
| | | | | | | | | | | | | | | | | | | | | terminal features, each of which are defined in one place and map to a builtin set of terminfo(5) capabilities. Features can be specified based on TERM with a new terminal-features option or with the -T flag when running tmux. tmux will also detect a few common terminals from the DA and DSR responses. This is intended to make it easier to configure tmux's use of terminfo(5) even in the presence of outdated ncurses(3) or terminfo(5) databases or for features which do not yet have a terminfo(5) entry. Instead of having to grok terminfo(5) capability names and what they should be set to in the terminal-overrides option, the user can hopefully just give tmux a feature name and let it do the right thing. The terminal-overrides option remains both for backwards compatibility and to allow tweaks of individual capabilities. tmux already did much of this already, this makes it tidier and simpler to configure.
* Also redraw panes which aren't pane 0. Problem reported by tb@.nicm2020-04-20
|
* Only trim blank lines when the source pane is not the target pane,nicm2020-04-20
| | | | otherwise the cursor moves which is a bit strange.
* Need to check for pane redrawing even if just the window flag is setnicm2020-04-20
| | | | | (the pane flag may not have been previously set to avoid looping the windows).
* The PANE_REDRAW flag bit might be needed by other panes so we can'tnicm2020-04-18
| | | | | | | clear it on the first redraw, and it can't be set when we are finished or they would be redrawn again, so if the redraw is deferred for a client, copy the redraw flag into a separate set of bits just for that client.
* A resize can realloc so cannot cache the value of the list pointer.nicm2020-04-18
|
* Reset background colour on scrolled line.nicm2020-04-18
|
* There is no point in keeping a bunch of different text buffers for eachnicm2020-04-18
| | | | | line when writing, we only need one as big as the line width - there can't be any more text than that since newer will overwrite older.
* Use size_t not u_int for the bytes counters and fix a const missing.nicm2020-04-18
|
* Use peek line function instead of hoking in the array directly.nicm2020-04-18
|
* Bring back previons fix to only redraw panes that need it after a redrawnicm2020-04-18
| | | | | is deferred, but clear the pane flags when they are actually redrawn rather than every time.
* Add formats for pane written/skipped bytes for debugging.nicm2020-04-18
|
* Only update mode when actually going to redraw something.nicm2020-04-18
|