aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
Commit message (Collapse)AuthorAge
...
* | Merge branch 'obsd-master' into masterThomas Adam2021-04-07
|\|
| * Add a current_file format for the config file being parsed. Originallynicm2021-04-07
| | | | | | | | suggested by kn@, also GitHub issue 2638.
* | Merge branch 'obsd-master' into masterThomas Adam2021-04-01
|\|
| * Missing commas, from Vipul Kumar.nicm2021-04-01
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-03-16
|\|
| * Add client-detached notification in control mode, from Mohsin Kaleem.nicm2021-03-16
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-03-11
|\|
| * Add an "absolute-centre" alignment to use the centre of the total spacenicm2021-03-11
| | | | | | | | instead of only the available space. From Magnus Gross in GitHub issue 2578.
| * Add split-window -Z to start the pane zoomed, GitHub issue 2591.nicm2021-03-11
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-03-02
|\|
| * Drop support for popups where the content is provided directly to tmuxnicm2021-03-02
| | | | | | | | | | | | (which does not have many practical uses) and only support running a program in the popup. display-popup is now simpler and can accept multiple arguments to avoid escaping problems (like the other commands).
* | Merge branch 'obsd-master' into masterThomas Adam2021-03-01
|\|
| * escape quotes and remove some unneccessary Pp; ok nicmjmc2021-03-01
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-03-01
|\|
| * Add some text with examples of ; as a separator, GitHub issues 2522 andnicm2021-03-01
| | | | | | | | 2580.
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-26
|\|
| * Add a couple of format variables for active and last window index.nicm2021-02-26
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-22
|\|
| * Move config file path expansion much earlier, keep the list of pathsnicm2021-02-22
| | | | | | | | | | around rather than freeing later, and add a config_files format variable containing it. Suggested by kn@ a while back.
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-17
|\|
| * Support X11 colour names and some other variations for OSC 10/11, alsonicm2021-02-15
| | | | | | | | add OSC 110 and 111. GitHub issue 2567.
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-10
|\|
| * Use ~/.tmux.conf as an example rather than /etc/passwd, suggested bynicm2021-02-10
| | | | | | | | deraadt@.
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-08
|\|
| * Add "pipe" variants of the "copy-pipe" commands which do not copy, fromnicm2021-02-08
| | | | | | | | Christian Zangl.
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-06
|\|
| * In the end UTF-8 did not become a terminal feature, should not be listednicm2021-02-06
| | | | | | | | in man page.
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-05
|\|
| * Send Unicode directional isolate characters around horizontal panenicm2021-02-05
| | | | | | | | | | | | | | | | borders if the terminal support UTF-8 and an extension terminfo(5) capability "Bidi" is present. On terminals with BiDi support (ie, VTE) this seems to be enough to display right-to-left text acceptably enough to be usable (with some caveats about the mouse position). Requested by and with help from Mahmoud Elagdar in GitHub issue 2425.
| * Add a -S flag to new-window to make it select the existing window if onenicm2021-02-05
| | | | | | | | | | | | | | with the given name already exists rather than failing with an error. Also add a format to check if a window or session name exists which allows the same with other commands. Requested by and discussed with kn@.
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-02
|\|
| * article fixes; from eddie yousephjmc2021-02-02
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-02-01
|\|
| * Add a no-detached choice to detach-on-destroy which detaches only ifnicm2021-02-01
| | | | | | | | | | there are no other detached sessions to switch to, from Sencer Selcuk in GitHub issue 2553.
* | Merge branch 'obsd-master' into masterThomas Adam2021-01-29
|\|
| * Trim output overwritten by later text or clears completely rather thannicm2021-01-29
| | | | | | | | | | only in a few cases. This means we can better track when a line should wrap. GitHub issue 2537.
* | Merge branch 'obsd-master' into masterThomas Adam2021-01-22
|\|
| * Add rectangle-on and rectangle-off copy mode commands, GitHub isse 2546nicm2021-01-22
| | | | | | | | from author at will dot party.
* | Merge branch 'obsd-master' into masterThomas Adam2021-01-20
|\|
| * Change so that window_flags escapes # automatically which means configsnicm2021-01-20
| | | | | | | | | | will not have to change. A new format window_raw_flags contains the old unescaped version.
* | Merge branch 'obsd-master' into masterThomas Adam2021-01-17
|\|
| * Add -N flag to never start server even if command would normally do so,nicm2021-01-17
| | | | | | | | GitHub issue 2523.
* | Merge branch 'obsd-master' into masterThomas Adam2021-01-04
|\|
| * Add a variant of remain-on-exit that only keeps the pane if the programnicm2021-01-04
| | | | | | | | failed, GitHub issue 2513.
* | Merge branch 'obsd-master' into masterThomas Adam2021-01-01
|\|
| * Add a -C flag to run-shell to use a tmux command rather than a shell command.nicm2021-01-01
| |
* | Merge branch 'obsd-master' into masterThomas Adam2020-12-15
|\|
| * Make synchronize-panes a pane option and add -U flag to set-option tonicm2020-12-15
| | | | | | | | unset an option on all panes. GitHub issue 2491 from Rostislav Nesin.
* | Merge branch 'obsd-master' into masterThomas Adam2020-12-03
|\|
| * Redraw any visible modes when status line changes so that formats likenicm2020-12-03
| | | | | | | | | | the pane title are updated. GitHub issue 2487. Also a man page fix from jmc.