| Commit message (Expand) | Author | Age | Files | Lines |
* | Add regular expression support for the format search, match and |  nicm | 2019-06-13 | 1 | -2/+6 |
* | Do not load the config file if the server is exiting because it failed |  nicm | 2019-06-07 | 1 | -2/+2 |
* | Add a -v flag to source-file to show the commands and line numbers. |  nicm | 2019-06-05 | 1 | -1/+2 |
* | Add new-session -X and attach-session -x to send SIGHUP to parent when |  nicm | 2019-06-03 | 1 | -2/+2 |
* | Change display-menu from taking a single string to a set of arguments, |  nicm | 2019-05-28 | 1 | -8/+14 |
* | Add formats for word and line under the mouse and use them to add some |  nicm | 2019-05-26 | 1 | -2/+4 |
* | Merge cmd_list_parse into cmd-parse.y so it can use the new alias |  nicm | 2019-05-25 | 1 | -2/+3 |
* | Make cmd_log_argv take a printf-like format for the prefix. |  nicm | 2019-05-25 | 1 | -2/+2 |
* | Break the argument escaping code into a separate function and use it to |  nicm | 2019-05-23 | 1 | -2/+3 |
* | Replace the split parser code (cfg.c and cmd-string.c) with a single |  nicm | 2019-05-23 | 1 | -13/+53 |
* | Fix ordering of source-file with multiple files and add flags to load_cfg. |  nicm | 2019-05-20 | 1 | -2/+4 |
* | Replace the various identical error callbacks with a single one in cmd-queue.c. |  nicm | 2019-05-20 | 1 | -1/+2 |
* | Move the single command flag (CMD_CONTROL) into the shared flags. |  nicm | 2019-05-18 | 1 | -4/+2 |
* | Add support for overline (SGR 53), from Ricardo Banffy. |  nicm | 2019-05-13 | 1 | -1/+3 |
* | Add simple menus to tree, client, buffer modes. |  nicm | 2019-05-12 | 1 | -3/+5 |
* | Remove menu_create_from_items, I thought I would use it for some later |  nicm | 2019-05-12 | 1 | -4/+2 |
* | Add support for simple menus usable with mouse or keyboard. New command |  nicm | 2019-05-10 | 1 | -7/+17 |
* | Add a function to draw a simple menu onto a screen. |  nicm | 2019-05-10 | 1 | -2/+18 |
* | Save mouse buttons as well as position. |  nicm | 2019-05-09 | 1 | -1/+2 |
* | send-keys also needs to insert key commands in the right order. |  nicm | 2019-05-09 | 1 | -3/+4 |
* | Add a flag to redraw only the overlay, and remove the overlay on resize. |  nicm | 2019-05-08 | 1 | -2/+4 |
* | Move around the display-panes identify code to make it a bit more |  nicm | 2019-05-07 | 1 | -9/+28 |
* | Treat keys in identify mode (display-panes) specially and handle them |  nicm | 2019-05-07 | 1 | -2/+2 |
* | Do not use evbuffer_add_buffer because it is destructive and doesn't |  nicm | 2019-05-07 | 1 | -3/+4 |
* | Allow panes to be empty (no command), output can be piped to them with |  nicm | 2019-05-03 | 1 | -1/+6 |
* | Correct ordering when adding after an existing item. |  nicm | 2019-05-03 | 1 | -2/+2 |
* | Instead of processing keys all together, put them up on the client |  nicm | 2019-05-03 | 1 | -4/+11 |
* | Support multiple occurances of the same argument. Use this for a new |  nicm | 2019-04-28 | 1 | -1/+5 |
* | Merge hooks into options and make each one an array option. This allows |  nicm | 2019-04-26 | 1 | -30/+11 |
* | Make options_tostring allocate its result instead of using a stack |  nicm | 2019-04-25 | 1 | -2/+2 |
* | Indicate an array option with a flag rather than a special type so that |  nicm | 2019-04-23 | 1 | -5/+16 |
* | Break new window and pane creation common code from various commands and |  nicm | 2019-04-17 | 1 | -17/+43 |
* | Add an argument to copy commands to set the prefix for the buffer name, |  nicm | 2019-04-02 | 1 | -2/+2 |
* | Store and restore cursor across reflow by working out a position based |  nicm | 2019-04-02 | 1 | -3/+3 |
* | Add StatusDefault binding for the mouse on any otherwise unassigned |  nicm | 2019-03-25 | 1 | -1/+3 |
* | Improve cursor positioning after reflow by storing the position as an |  nicm | 2019-03-20 | 1 | -4/+6 |
* | The individual -fg, -bg and -attr options have been deprecated (in |  nicm | 2019-03-18 | 1 | -7/+1 |
* | Extend the #[] style syntax and use that together with previous format |  nicm | 2019-03-18 | 1 | -20/+67 |
* | Add format variables for the default formats for the various modes |  nicm | 2019-03-18 | 1 | -1/+5 |
* | Make array options a sparse tree instead of an array of char * and |  nicm | 2019-03-18 | 1 | -2/+7 |
* | Use a pointer for the active screen in the status line instead of |  nicm | 2019-03-16 | 1 | -2/+3 |
* | Tidy and rename some bits of status line code. |  nicm | 2019-03-16 | 1 | -4/+5 |
* | Add a way to set individual defaults for an array option. |  nicm | 2019-03-15 | 1 | -1/+2 |
* | Move status line free into its own function. |  nicm | 2019-03-15 | 1 | -1/+2 |
* | Remove unused member of struct client. |  nicm | 2019-03-15 | 1 | -3/+1 |
* | Add a -v flag to display-message to show verbose messages as the format |  nicm | 2019-03-15 | 1 | -1/+2 |
* | Store the time in the format tree rather than passing it around. |  nicm | 2019-03-14 | 1 | -2/+2 |
* | Add a wrapper (struct style) around styles rather than using the |  nicm | 2019-03-14 | 1 | -11/+17 |
* | Do not use const on struct window_pane, it causes more trouble than it |  nicm | 2019-03-14 | 1 | -4/+4 |
* | Set a flag on cells are genuinely empty (cleared and never written to) |  nicm | 2019-03-12 | 1 | -1/+2 |