aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
Commit message (Collapse)AuthorAge
...
* | Add -e for new-session.Nicholas Marriott2020-05-01
| |
* | Typo in man page.Nicholas Marriott2020-05-01
| |
* | Add 'e' key in buffer mode to open the buffer in an editor.Nicholas Marriott2020-05-01
| |
* | Add -W and -T flags to command-prompt to only complete a window and a target.Nicholas Marriott2020-04-30
| |
* | Copy mode search improvements:Nicholas Marriott2020-04-29
| | | | | | | | | | | | | | | | | | - Add styles for the search marking styles (copy-mode-match-style and copy-mode-current-match-style). - Show the current match (the one with the cursor on it) in a different style. - Copying without a selection will copy the current match if there is one.
* | Add feature and capabilities for focus reporting. Also document AX and XT evenNicholas Marriott2020-04-24
| | | | | | | | though they aren't tmux's.
* | Add a feature for bracketed paste.Nicholas Marriott2020-04-24
| |
* | Move terminal features into a single file.Nicholas Marriott2020-04-24
| |
* | Merge branch 'obsd-master'Thomas Adam2020-04-24
|\|
| * ce examples of "Ar arg Ar arg" with "Ar arg arg" and stop the spread;jmc2020-04-23
| |
* | Add extension terminfo(5) capabilities for margins.Nicholas Marriott2020-04-23
| |
* | Add an attribute for ACS.Nicholas Marriott2020-04-23
| |
* | Tweak the default choose modes formats:Nicholas Marriott2020-04-23
| | | | | | | | | | | | - 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.
* | Merge branch 'obsd-master'Thomas Adam2020-04-23
|\|
| * 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.
* | Merge branch 'obsd-master'Thomas Adam2020-04-22
|\|
| * Add a session_marked format like window_marked.nicm2020-04-22
| |
* | Merge branch 'obsd-master'Thomas Adam2020-04-22
|\|
| * Change so main-pane-width and height can be given as a percentage.nicm2020-04-22
| |
* | Merge branch 'obsd-master'Thomas Adam2020-04-20
|\|
| * 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.
* | Merge branch 'obsd-master'Thomas Adam2020-04-20
|\|
| * 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.
* | Merge branch 'obsd-master'Thomas Adam2020-04-18
|\|
| * Add formats for pane written/skipped bytes for debugging.nicm2020-04-18
| |
* | Merge branch 'obsd-master'Thomas Adam2020-04-17
|\|
| * Add a copy-command option and change copy-pipe and friends to pipe to itnicm2020-04-17
| | | | | | | | | | if used without arguments, allows all copy key bindings to be changed to pipe with one option.
* | Merge branch 'obsd-master'Thomas Adam2020-04-16
|\|
| * Add support for the iTerm2 sychronized updates escape sequence whichnicm2020-04-16
| | | | | | | | drastically reduces flickering.
* | Merge branch 'obsd-master'Thomas Adam2020-04-13
|\|
| * Change so that the appropriate hooks for windows and panes belong tonicm2020-04-13
| | | | | | | | | | | | pane/window options rather than all being session options. This is useful for example to create a pane that is automatically closed on some condition. From Anindya Mukherjee.
| * Mention RGB, pointed out by Jody Frankowski.nicm2020-04-12
| |
| * Add a -f filter argument to the list commands like choose-tree.nicm2020-04-12
| |
| * Clarify a couple of style options.nicm2020-04-12
| |
| * Remove unused define, also a man fix from jmc.nicm2020-04-10
| |
| * Now that copy mode copies the pane content rather than keeping anicm2020-04-10
| | | | | | | | | | | | | | | | | | | | reference to it, it isn't necessary that the pane in copy mode is the same as the one copying from. Add a -s flag to copy-mode to specify a different pane for the source content. This means it is possible to view two places in a pane's history at the same time in different panes, or copy from a pane's history into an editor or shell in the same pane. From Anindya Mukherjee.
* | Merge branch 'obsd-master'Thomas Adam2020-04-09
|\|
| * Mention paste at same place as copy, suggested by John Boyle.nicm2020-04-09
| |
| * Restore pane_current_path format from portable tmux, it is no longernicm2020-04-08
| | | | | | | | used by default and is very useful.
* | Merge branch 'obsd-master'Thomas Adam2020-04-06
|\|
| * Change copy mode to make copy of the pane history so it does not need tonicm2020-04-06
| | | | | | | | | | | | freeze updates (which does not play nicely with some applications, a longstanding problem) and will allow some other changes later. From Anindya Mukherjee.
* | Merge branch 'obsd-master'Thomas Adam2020-04-06
|\|
| * Add an argument to list-commands to show only a single command.nicm2020-04-05
| |
* | Merge branch 'obsd-master'Thomas Adam2020-04-02
|\|
| * Add a W position to display-menu -y to use the line above (or below) thenicm2020-04-02
| | | | | | | | | | status line containing the window list. Leave S meaning above (or below) all status lines. GitHub issue 2145.
* | Merge branch 'obsd-master'Thomas Adam2020-04-01
|\|
| * Performance improvements for regex searching, most notably:nicm2020-04-01
| | | | | | | | | | | | | | | | | | | | | | | | | | - Use the grid data directly instead of copying it. - Special case the most typical one byte character cells and use memcmp for multiple bytes instead of a handrolled loop. - Hoist regcomp out of the loop into the calling functions. GitHub issue 2143. Also a man page from from jmc@.
| * Add a way to mark environment variables as "hidden" so they can be usednicm2020-03-31
| | | | | | | | by tmux but are not passed into the environment of new panes.
| * Add a -T flag to resize-pane to trim lines below the cursor, movingnicm2020-03-31
| | | | | | | | lines out of the history. GitHub issue 2134.