aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Remove a redundant if statement.nicm2020-05-20
|
* Key strings need to include the cursor and keypad flags now since thenicm2020-05-20
| | | | output key lookup expects them already set.
* Some other ctrl keys need to be translated with extended keys on.nicm2020-05-19
|
* Move lazy resize from the pane to the window, there is no point innicm2020-05-16
| | | | | | resizing the window unless it is the current window, and if we do and don't resize the pane until later there are problems if the size changes from A to B then back to A.
* On select-window, make this client the latest client for the window.nicm2020-05-16
|
* Add a terminal feature for enable/disable extended keys (supported bynicm2020-05-16
| | | | | | | xterm and mintty) and add an option to make tmux send it. Only forward extended keys if the application has requested them, even though we use the CSI u sequence and xterm uses CSI 27 ~ - this is what mintty does as well.
* Separate key flags and modifiers, log key flags, make the "xterm" flagnicm2020-05-16
| | | | more explicit and fix M- keys with a leading escape.
* Add an option to set the pane border lines style from a choice of singlenicm2020-05-16
| | | | | | lines (ACS or UTF-8), double or heavy (UTF-8), simple (plain ASCII) or number (the pane numbers). Lines that won't work on a non-UTF-8 terminal are translated back into ACS when they are output.
* Add screen write flags instead of individual bits and fix line lengthnicm2020-05-16
| | | | calculation with padding.
* Add a client flag 'active-pane' which stores the active pane in thenicm2020-05-16
| | | | | | | | | client and allows it to be changed independently from the real active pane stored in the window. This is can be used with session groups which allow an independent current window (although it would be nice to have a flag for this too and remove session groups). The client active pane is only really useful interactively, many things (hooks, window-style, zooming) still use the window active pane.
* Expand target from client and use it to expand the prompt.nicm2020-05-16
|
* Move editor stuff to common code in popup.c.nicm2020-05-16
|
* Add a mark in copy mode. Set with set-mark command (bound to 'X') bynicm2020-05-16
| | | | | | | | default and the mark and cursor position are swapped with 'jump-to-mark' (bound to M-x). The line containing the mark is shown in copy-mode-mark-style with the horizontal position in reverse. From Anindya Mukherjee in GitHub issue 2209.
* Add a -D flag to ask tmux not to daemonize, useful both for running anicm2020-05-16
| | | | | debugger (lldb does not have follow-fork-mode) and for running with a managed supervisor init system. GitHub issue 2190.
* Do not loop forever when search finds an empty match, GitHub issue 2203.nicm2020-05-16
|
* Fix next-matching-bracket logic, from Chris Barber.nicm2020-05-16
|
* Add a customize mode where keys and options may be browsed and changed,nicm2020-05-16
| | | | | includes adding a brief description of each option. Bound to "C" by default.
* Support embedded styles in the display-message message, GitHub issuenicm2020-05-16
| | | | 2206.
* Store and restore cursor position when copy mode is resized, fromnicm2020-05-16
| | | | Anindya Mukherjee.
* Allow a custom time format to be given to the t format modifier.nicm2020-05-16
|
* Change message log to be per server rather than per client and includenicm2020-05-16
| | | | every command that is run.
* Add M-+ and M-- to expand and collapse all items in tree mode.nicm2020-05-16
|
* Change the existing client flags for control mode to apply for anynicm2020-05-16
| | | | | | | | | | | | | | | | client, use the same mechanism for the read-only flag and add an ignore-size flag. refresh-client -F has become -f (-F stays for backwards compatibility) and attach-session and switch-client now have -f flags also. A new format "client_flags" lists the flags and is shown by list-clients by default. This separates the read-only flag from "ignore size" behaviour (new ignore-size) flag - both behaviours are useful in different circumstances. attach -r and switchc -r remain and set or toggle both flags together.
* Only redraw popup on the client it belongs to.nicm2020-05-16
|
* Export TERM_PROGRAM and TERM_PROGRAM_VERSION like various othernicm2020-05-16
| | | | terminals.
* Add formats for after hook command arguments.nicm2020-05-16
|
* Try to search the entire history first for up to 200 ms so a searchnicm2020-05-16
| | | | count can be shown. If it takes too long, search the visible text only.
* Do not need to work out status line offset, we already have it.nicm2020-05-16
|
* Use VIS_CSTYLE for paste buffers also.nicm2020-05-16
|
* Do not hoke into struct window_pane from the tty code and instead setnicm2020-05-16
| | | | | | | everything up in tty_ctx. Provide a way to initialize the tty_ctx from a callback and use it to let popups draw directly through input_parse in the same way as panes do, rather than forcing a full redraw on every change.
* Rename and tidy some stuff in struct tty_ctx.nicm2020-05-16
|
* Add -e for new-session to set environment variables.nicm2020-05-16
|
* Add 'e' key in buffer mode to open the buffer in an editor.nicm2020-05-16
|
* Use formats for status-style and message-style.nicm2020-05-16
|
* Complete partial window indexes properly.nicm2020-05-16
|
* Add -W and -T flags to command-prompt to only complete a window and anicm2020-05-16
| | | | target, also complete aliases.
* Copy mode search improvements:nicm2020-05-16
| | | | | | | | | - 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.
* Improve command prompt completion:nicm2020-05-16
| | | | | | | | | | | - Show a menu with completions if there are multiple. - Don't complete argument stuff (options, layouts) at start of text. - For -t and -s, if there is no : then complete sessions but if there is a :, show a menu of all windows in the session rather than trying to complete the window name which is a bit useless if there are duplicates.
* Drop having a separate type for style options and make them all strings,nicm2020-05-16
| | | | | | | | | | | | | | | | | which allows formats to be expanded. Any styles without a '#{' are still validated when they are set but any with a '#{' are not. Formats are not expanded usefully in many cases yet, that will be changed later. To make this work, a few other changes: - set-option -a with a style option automatically appends a ",". - OSC 10 and 11 don't set the window-style option anymore, instead the fg and bg are stored in the pane struct and act as the defaults that can be overridden by window-style. - status-fg and -bg now override status-style instead of trying to keep them in sync.
* Call format_defaults_window for panes as well.nicm2020-05-16
|
* Use a grid cell not a style for the pane style.nicm2020-05-16
|
* Instead of forbidding invalid session names, sanitize them like windownicm2020-05-16
| | | | names.
* Instead of having a default set of terminals in terminal-overrides thatnicm2020-05-16
| | | | | | | get XT added and using that as a marker for xterm(1)-like, assume that if the terminfo(5) entry already has XT or the clear capability starts with CSI then the terminal is VT100-like and it should be safe to send DA requests. The DA responses trigger additional features being added.
* 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.