aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Do not check if client is dead if it is NULL.nicm2019-12-12
|
* 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.
* Tweak previous to check the wrapped flag and stop if not set.nicm2019-12-11
|
* Allow search across wrapped lines and fix some inconsistencies in how thnicm2019-12-11
| | | | position is represented, GitHub issue 2014 from Anindya Mukherjee.
* Do not set cursor colour to default unless it has been changed, GitHubnicm2019-12-11
| | | | issue 2013.
* Make TMUX_CONF a list of files and expand leading $FOO or ~.nicm2019-12-10
|
* Style nits in function arguments.nicm2019-12-03
|
* Remove client menu, I don't think it adds anything.nicm2019-12-02
|
* If a window appears in only one attached session, there is no point innicm2019-11-29
| | | | worrying about which is the latest client (there is only one).
* Do not crash when a format doesn't exist, reported by Thomas Sattler.nicm2019-11-28
|
* Missing after-kill-pane option.nicm2019-11-28
|
* Parse out DA features.nicm2019-11-28
|
* Long lines and spacing fixes.nicm2019-11-28
|
* Add xrecallocarray.nicm2019-11-28
|
* Bump the escape sequence timeout to five seconds to allow for longernicm2019-11-28
| | | | legitimate sequences.
* 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
|
* status-left and status-right need push-default also, reported by Ericnicm2019-11-28
| | | | Pruitt in GitHub issue 1989.
* REG_STARTEND is not portable, but it turns out we don't actually neednicm2019-11-27
| | | | it. From Evan Green, GitHub issue 1982.
* Add default # and * binding with vi(1) keys.nicm2019-11-26
|
* Don't use motion flag uninitialized.nicm2019-11-25
|
* Fix a warning in previous.nicm2019-11-25
|
* Do not clear search marks on cursor movement with vi(1) keys, from Ericnicm2019-11-25
| | | | Pruitt in GitHub issue 1985.
* Add p format modifier for padding to width.nicm2019-11-25
|
* Allow multiple substitutions in a single format.nicm2019-11-25
|
* Only substitute patterns starting with ^ once.nicm2019-11-24
|
* Do not check the client readonly flag when there is no client, GitHub issue ↵nicm2019-11-20
| | | | 1980.
* Add -f for full size to join-pane (like split-window), from Theo Buehler.nicm2019-11-18
|
* Keep modifiers on backspace when translating it.nicm2019-11-18
|
* Do not add path if it is NULL, duh.nicm2019-11-15
|
* Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path).nicm2019-11-15
|
* Change window-size default from smallest to latest.nicm2019-11-14
|
* Fix parsing of DA with only one argument in the response and add 65 for VT520.nicm2019-11-14
|
* Change new-session -A without a session name (that is, no -s optionnicm2019-11-14
| | | | | also) to attach to the best existing session like attach-session rather than creating a new one.
* CUB and CUF are also limited by the margins so use CUP instead whennicm2019-11-14
| | | | margins are enabled (we already do this for linefeed).
* Add an option to set the key sent by backspace for those whose systemnicm2019-11-14
| | | | uses ^H rather than ^?. GitHub issue 1969.
* Add -F flag to send-keys to expand formats in search-backward andnicm2019-11-07
| | | | | forward copy mode commands, this makes it easier to use the cursor_word and cursor_line formats. From Anindya Mukherjee in GitHub issue 1964.
* Limit lazy resize to panes in attached sessions only - those innicm2019-11-01
| | | | | | unattached are likely to have been resized by something like split-window where the user probably wants the resize to happen immediately. GitHub issue 1963.
* Handle the various different forms of rgb colour strings.nicm2019-11-01
|
* Start with empty rather than NULL window name to avoid NULL printf ifnicm2019-10-28
| | | | window_name is evaluated early. Reported by Mikolaj Kucharski.
* Document Any key, from Jason Felice.nicm2019-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.
* Add formats for cursor and selection position in copy mode, from Jason Felice.nicm2019-10-19
|
* Do not crash trying to fix layout size if only one cell, from Azat Khuzhin.nicm2019-10-19
|
* Rewrite options_array_set to be clearer and remove a spurious warningnicm2019-10-15
| | | | with newer GCC. From Ben Boeckel.
* Add support for percentage sizes for resize-pane ("-x 10%"). Also changenicm2019-10-15
| | | | | split-window and join-pane -l to accept similar percentages and deprecate -p. From Anindya Mukherjee.
* Do not crash with pane_current_command if the pane is newly created andnicm2019-10-14
| | | | has no shell set, from Thomas Adam.
* Turn automatic-rename back on if the rename escape sequence is used withnicm2019-10-14
| | | | an empty name, GitHub issue 1921.
* Some old tmux versions can sometimes generate layout strings which havenicm2019-10-14
| | | | | | | | the incorrect size for the top cell. Previously tmux didn't care but now that panes can be partly hidden, the size matters and is checked more strictly. So add some code to fix up the most common problem and a sanity check to reject layouts with any other size problems. Reported by Aleksandrs Ledovskis in GitHub issue 1930.
* Memory leaks, from Igor Wong in GitHub issue 1934.nicm2019-10-14
|