aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
Commit message (Collapse)AuthorAge
...
* | Merge branch 'obsd-master'Thomas Adam2019-07-01
|\|
| * Add a "fill" style attribute to clear the entire format drawing area innicm2019-07-01
| | | | | | | | a colour, GitHub issue 1815.
* | Merge branch 'obsd-master'Thomas Adam2019-06-27
|\|
| * minor eol issues;jmc2019-06-27
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-27
|\|
| * Add support for underscore colours with Setulc capability, mostly fromnicm2019-06-27
| | | | | | | | Kai Moschcau.
* | Merge branch 'obsd-master'Thomas Adam2019-06-21
|\|
| * Man page fixes from lacygoill at lacygoill dot me.nicm2019-06-21
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-20
|\|
| * Add -r to find-window for regex instead of fnmatch.nicm2019-06-20
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-20
|\|
| * allow-rename and alternate-screen can be pane options.nicm2019-06-20
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-20
|\|
| * Add a per-pane option set. Pane options inherit from window options (sonicm2019-06-20
| | | | | | | | | | | | | | | | | | | | | | | | there should be no change to existing behaviour) and are set and shown with set-option -p and show-options -p. Change remain-on-exit and window-style/window-active-style to be pane options (some others will be changed later). This makes select-pane -P and -g unnecessary so no longer document them (they still work) and no longer document set-window-option and show-window-options in favour of set-option -w and show-options -w.
* | Merge branch 'obsd-master'Thomas Adam2019-06-20
|\|
| * Add a -A flag to show-options to show parent options as well.nicm2019-06-20
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-14
|\|
| * A couple of minor parser changes around conditions: 1) only treat #{nicm2019-06-14
| | | | | | | | | | specially after a condition, otherwise as a comment (which is more as most people expect) 2) allow formats to be quoted after a condition.
| * tweak previous;jmc2019-06-13
| |
| * Add regular expression support for the format search, match andnicm2019-06-13
| | | | | | | | substitute modifiers.
* | Merge branch 'obsd-master'Thomas Adam2019-06-05
|\|
| * Add a -v flag to source-file to show the commands and line numbers.nicm2019-06-05
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-03
|\|
| * Add new-session -X and attach-session -x to send SIGHUP to parent whennicm2019-06-03
| | | | | | | | | | detaching (like detach-client -P). From Colin Watson in GitHub issue 1773.
* | Merge branch 'obsd-master'Thomas Adam2019-05-30
|\|
| * I had hoped that non-xenl terminals had died out, at least in fairlynicm2019-05-30
| | | | | | | | | | modern OSs, but no - DragonFly BSD's console returns to haunt us. Fix it at least somewhat. GitHub issue 1763.
* | Merge branch 'obsd-master'Thomas Adam2019-05-29
|\|
| * Support \ooo escapes, from Avi Halachmi.nicm2019-05-29
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-28
|\|
| * Allow source-file to take multiple arguments.nicm2019-05-28
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-28
|\|
| * Allow menu items to be disabled by putting a - at the start of theirnicm2019-05-28
| | | | | | | | | | name, rather than just including #[dim] which still allowed them to be chosen.
* | Merge branch 'obsd-master'Thomas Adam2019-05-28
|\|
| * Change display-menu from taking a single string to a set of arguments,nicm2019-05-28
| | | | | | | | which is much easier to work with. Based on a diff from Avi Halachmi.
* | Merge branch 'obsd-master'Thomas Adam2019-05-27
|\|
| * Clarify newlines inside {} a little.nicm2019-05-27
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-27
|\|
| * Add an additional {} syntax for defining strings in the configurationnicm2019-05-27
| | | | | | | | | | | | | | file, making it much tidier to define commands that contain other tmux or shell commands (like if-shell). Also tweak bind-key to expect a string if it is only given one argument, so {} can be used with it as well. From Avi Halachmi.
* | Merge branch 'obsd-master'Thomas Adam2019-05-26
|\|
| * Add formats for word and line under the mouse and use them to add somenicm2019-05-26
| | | | | | | | items to the pane menu.
* | Merge branch 'obsd-master'Thomas Adam2019-05-26
|\|
| * Add a way to append or prepend to a format if the length has been limited.nicm2019-05-26
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-25
|\|
| * Add <, >, <=, >= for formats, GitHub issue 1747.nicm2019-05-25
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-23
|\|
| * Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm2019-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | parser using yacc(1). This is a major change but is clearer and simpler and allows some edge cases to be made more consistent, as well as tidying up how aliases are handled. It will also allow some further improvements later. Entirely the same parser is now used for parsing the configuration file and for string commands. This means that constructs previously only available in .tmux.conf, such as %if, can now be used in string commands (for example, those given to if-shell - not commands invoked from the shell, they are still parsed by the shell itself). The only syntax change I am aware of is that #{} outside quotes or a comment is now considered a format and not a comment, so #{ is now a syntax error (notably, if it is at the start of a line). This also adds two new sections to the man page documenting the syntax and outlining how parsing and command execution works. Thanks to everyone who sent me test configs (they still all parse without errors - but this doesn't mean they still work as intended!). Thanks to Avi Halachmi for testing and man page improvements, also to jmc@ for reviewing the man page changes.
* | Merge branch 'obsd-master'Thomas Adam2019-05-21
|\|
| * Fix a couple of Ta from Alphonse Mariya.nicm2019-05-21
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-13
|\|
| * Add support for overline (SGR 53), from Ricardo Banffy.nicm2019-05-13
| |