| Commit message (Expand) | Author | Age | Files | Lines |
* | Now that copy mode copies the pane content rather than keeping a |  nicm | 2020-04-10 | 1 | -3/+5 |
* | Pass correct flags to fnmatch. |  nicm | 2020-04-09 | 1 | -2/+2 |
* | Change copy mode to make copy of the pane history so it does not need to |  nicm | 2020-04-06 | 1 | -28/+1 |
* | Move alternate screen into the screen rather than the pane. |  nicm | 2020-03-31 | 1 | -77/+4 |
* | Detach reply escape sequences from the pane so they work in popups. |  nicm | 2020-03-31 | 1 | -5/+4 |
* | Change input path so it doesn't require a pane. |  nicm | 2020-03-19 | 1 | -6/+6 |
* | FIx type for %u, from Thomas Adam. |  nicm | 2020-03-16 | 1 | -3/+3 |
* | Fix top/bottom pane calculation with pane border status enabled, |  nicm | 2020-02-14 | 1 | -8/+15 |
* | Treat plausible but invalid keys (like C-BSpace) as literal like any |  nicm | 2020-01-13 | 1 | -7/+9 |
* | Rewrite the code for reading and writing files. Now, if the client is |  nicm | 2019-12-12 | 1 | -15/+14 |
* | Make a best effort to set xpixel and ypixel for each pane and add |  nicm | 2019-11-28 | 1 | -4/+40 |
* | Start with empty rather than NULL window name to avoid NULL printf if |  nicm | 2019-10-28 | 1 | -2/+2 |
* | Make client exit if pane where input is going is closed. |  nicm | 2019-09-10 | 1 | -1/+5 |
* | The resize event was never deciding to actually resize the pane if there |  nicm | 2019-08-28 | 1 | -2/+2 |
* | Add -Z flag to rotate-window, select-pane, swap-pane, switch-client to |  nicm | 2019-08-14 | 1 | -1/+23 |
* | Do not double free window if pane fails to start. |  nicm | 2019-06-30 | 1 | -2/+2 |
* | Fix a typo in window_pane_find_down (w not wp) and a missing PANE_STATUS_TOP. |  nicm | 2019-06-26 | 1 | -2/+2 |
* | Log window and pane resizes. |  nicm | 2019-06-26 | 1 | -1/+3 |
* | Add #define for the pane status line option position numbers. |  nicm | 2019-06-26 | 1 | -13/+37 |
* | Trim trailing spaces when matching. |  nicm | 2019-06-24 | 1 | -1/+9 |
* | allow-rename and alternate-screen can be pane options. |  nicm | 2019-06-20 | 1 | -3/+3 |
* | Add a per-pane option set. Pane options inherit from window options (so |  nicm | 2019-06-20 | 1 | -25/+32 |
* | Add a cmdq_continue function rather than twiddling the flag directly. |  nicm | 2019-06-18 | 1 | -2/+2 |
* | Add regular expression support for the format search, match and |  nicm | 2019-06-13 | 1 | -9/+27 |
* | Exiting alternate screen mode should restore cursor position and |  nicm | 2019-06-09 | 1 | -13/+21 |
* | Remove a leftover abort and some fixes from cppcheck. |  nicm | 2019-05-30 | 1 | -2/+2 |
* | Do not use evbuffer_add_buffer because it is destructive and doesn't |  nicm | 2019-05-07 | 1 | -4/+6 |
* | Allow panes to be empty (no command), output can be piped to them with |  nicm | 2019-05-03 | 1 | -1/+48 |
* | Destroy panes before options to avoid crash when forced into a mode by a |  nicm | 2019-04-26 | 1 | -3/+3 |
* | Break new window and pane creation common code from various commands and |  nicm | 2019-04-17 | 1 | -187/+30 |
* | Free temporary screens when writing format. |  nicm | 2019-03-18 | 1 | -1/+3 |
* | Extend the #[] style syntax and use that together with previous format |  nicm | 2019-03-18 | 1 | -2/+1 |
* | Mode init needs to be fired with the mode on the list or it will not be |  nicm | 2019-03-18 | 1 | -4/+5 |
* | Add format variables for the default formats for the various modes |  nicm | 2019-03-18 | 1 | -1/+12 |
* | Add a wrapper (struct style) around styles rather than using the |  nicm | 2019-03-14 | 1 | -11/+11 |
* | Do not use const on struct window_pane, it causes more trouble than it |  nicm | 2019-03-14 | 1 | -2/+2 |
* | Fix resizing of control clients, should be ignored until SIZECHANGED flag set. |  nicm | 2019-03-12 | 1 | -3/+3 |
* | Allow multiple modes to be open in a pane. A stack of open modes is kept |  nicm | 2019-03-12 | 1 | -27/+62 |
* | Add a separate mode struct for the active window mode if any. |  nicm | 2019-03-07 | 1 | -12/+16 |
* | Pass window into mode functions. |  nicm | 2018-12-18 | 1 | -3/+3 |
* | Clear PANE_EXITED flag when starting new child process in case the pane |  nicm | 2018-11-30 | 1 | -1/+5 |
* | evbuffer_new and bufferevent_new can both fail (when malloc fails) and |  nicm | 2018-11-19 | 1 | -1/+3 |
* | Support for windows larger than visible on the attached client. This has |  nicm | 2018-10-18 | 1 | -39/+23 |
* | calloc the mode data instead of malloc and initialize everything. |  nicm | 2018-08-05 | 1 | -2/+1 |
* | Log command arguments. |  nicm | 2018-08-02 | 1 | -3/+2 |
* | Make server_client_get_cwd used (almost) everywhere we need to work out |  nicm | 2018-05-24 | 1 | -2/+3 |
* | Improve logging of the environment etc for new panes. |  nicm | 2018-05-24 | 1 | -4/+7 |
* | Insert full size panes at the right position, from KOIE Hidetaka in |  nicm | 2018-03-16 | 1 | -5/+11 |
* | If we successfully change the directory, set PWD too to give the shell a |  nicm | 2017-11-09 | 1 | -5/+10 |
* | Show exit status and time in the remain-on-exit pane text, mostly from |  nicm | 2017-10-12 | 1 | -1/+2 |