| Commit message (Expand) | Author | Age | Files | Lines |
* | Add split-window -Z to start the pane zoomed, GitHub issue 2591. |  nicm | 2021-03-11 | 1 | -7/+7 |
* | Redraw status line and borders on pane enable/disable, GitHub issue 2554. |  nicm | 2021-02-04 | 1 | -4/+12 |
* | Add a hook when the pane title changed. |  nicm | 2020-07-24 | 1 | -1/+2 |
* | Check if client is NULL before using it, GitHub issue 2295. |  nicm | 2020-07-03 | 1 | -3/+3 |
* | Do not try to use the last marked pane if it is invalid. |  nicm | 2020-05-26 | 1 | -2/+5 |
* | Add a client flag 'active-pane' which stores the active pane in the |  nicm | 2020-05-16 | 1 | -7/+13 |
* | Drop having a separate type for style options and make them all strings, |  nicm | 2020-05-16 | 1 | -18/+16 |
* | Make client -c and -t handling common in cmd-queue.c and try to be |  nicm | 2020-04-13 | 1 | -7/+5 |
* | Move cmdq_state into cmd-queue.c. |  nicm | 2020-04-13 | 1 | -3/+2 |
* | Rename cmdq_shared to cmdq_state which will better reflect what it is |  nicm | 2020-04-13 | 1 | -3/+3 |
* | Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make its |  nicm | 2020-04-13 | 1 | -5/+7 |
* | Make struct cmd local to cmd.c and move it out of tmux.h. |  nicm | 2020-04-13 | 1 | -17/+18 |
* | Instead of passing titles through vis() which doubles backslashes, just |  nicm | 2020-02-03 | 1 | -3/+3 |
* | Make select-pane -P set window-active-style also to match previous |  nicm | 2019-09-24 | 1 | -1/+3 |
* | Add -Z flag to rotate-window, select-pane, swap-pane, switch-client to |  nicm | 2019-08-14 | 1 | -11/+21 |
* | Add a per-pane option set. Pane options inherit from window options (so |  nicm | 2019-06-20 | 1 | -8/+12 |
* | Don't redraw control clients, from George Nachman. |  nicm | 2019-04-30 | 1 | -2/+2 |
* | Merge hooks into options and make each one an array option. This allows |  nicm | 2019-04-26 | 1 | -2/+2 |
* | Break new window and pane creation common code from various commands and |  nicm | 2019-04-17 | 1 | -3/+3 |
* | Add a wrapper (struct style) around styles rather than using the |  nicm | 2019-03-14 | 1 | -8/+6 |
* | The pane's style should be initialized to default before parsing the |  nicm | 2019-03-13 | 1 | -1/+4 |
* | Support for windows larger than visible on the attached client. This has |  nicm | 2018-10-18 | 1 | -9/+28 |
* | If there are only two panes, always use the other pane as the last |  nicm | 2018-06-25 | 1 | -1/+6 |
* | -T should not actually select the pane. |  nicm | 2018-05-20 | 1 | -1/+2 |
* | Allow formats in selectp -T, from Thomas Adam. |  nicm | 2017-11-17 | 1 | -3/+10 |
* | Add selectp -T to set pane title. |  nicm | 2017-09-02 | 1 | -3/+8 |
* | Pass flags into cmd_find_from_* to fix prefer-unattached, reported by |  nicm | 2017-08-30 | 1 | -3/+3 |
* | Hooks for after-select-pane and after-select-window. |  nicm | 2017-08-08 | 1 | -2/+3 |
* | Get rid of the extra layer of flags and cmd_prepare() and just store the |  nicm | 2017-04-22 | 1 | -6/+6 |
* | Mouse bindings and hooks set up an initial current state when running a |  nicm | 2017-04-22 | 1 | -2/+4 |
* | Rename a variable. |  nicm | 2017-04-21 | 1 | -7/+7 |
* | The target validity check used window_pane_visible but that may be false |  nicm | 2016-11-16 | 1 | -2/+1 |
* | Mass rename struct cmd_q to struct cmdq_item and related. |  nicm | 2016-10-16 | 1 | -10/+10 |
* | Add static in cmd-* and fix a few other nits. |  nicm | 2016-10-10 | 1 | -3/+3 |
* | I no longer use my SourceForge address so replace it. |  nicm | 2016-01-19 | 1 | -2/+2 |
* | Remove an extra unzoom call which was probably a merge error. |  nicm | 2015-12-31 | 1 | -7/+1 |
* | Make the marked pane a cmd_find_state. |  nicm | 2015-12-15 | 1 | -3/+3 |
* | Instead of combined flags for -c, -s, -t, split into different sets |  nicm | 2015-12-14 | 1 | -3/+7 |
* | Use member names in cmd_entry definitions so I stop getting confused |  nicm | 2015-12-13 | 1 | -11/+17 |
* | Instead of every command resolving the target (-t or -s) itself, prepare |  nicm | 2015-12-13 | 1 | -14/+12 |
* | Unzoom before -LRUD, reported by Andy Weidenbaum. |  nicm | 2015-10-22 | 1 | -5/+10 |
* | When the active pane changes, redraw panes if the style has |  nicm | 2015-09-14 | 1 | -12/+18 |
* | Add support for a single "marked pane". There is one marked pane in the |  nicm | 2015-06-04 | 1 | -5/+28 |
* | Do not complain when directions fail. |  nicm | 2015-04-29 | 1 | -5/+3 |
* | If the requested pane is already active, do not unzoom the window (or do |  nicm | 2015-04-27 | 1 | -10/+16 |
* | Support setting the default window and pane background colours (window |  nicm | 2015-04-19 | 1 | -3/+19 |
* | Only redraw pane when it has actually changed. |  nicm | 2014-10-21 | 1 | -3/+2 |
* | Instead of setting up the default keys by building the key struct |  nicm | 2014-10-20 | 1 | -20/+1 |
* | Add flags to selectp to enable and disable input to a pane, from Anish |  nicm | 2014-08-11 | 1 | -12/+24 |
* | Remove the barely-used and unnecessary command check() function. |  nicm | 2013-10-10 | 1 | -3/+1 |