- d578cf8 Update palette when moving a pane, GitHub issue 3437. by nicm · 1 year, 10 months ago
- 08e6360 Add args parsing callback for some future work, currently unused. by nicm · 3 years, 3 months ago
- 1c78155 Add -b flags to insert a window before (like the existing -a for after) by nicm · 4 years, 5 months ago
- 392b381 Apply -n when only one pane in the window. by nicm · 4 years, 6 months ago
- 303d342 Add a client flag 'active-pane' which stores the active pane in the by nicm · 4 years, 6 months ago
- 950af33 Improve join-pane, move-pane and break-pane: by nicm · 4 years, 7 months ago
- 3f7f9a0 Make client -c and -t handling common in cmd-queue.c and try to be by nicm · 4 years, 7 months ago
- adb76fd Move cmdq_state into cmd-queue.c. by nicm · 4 years, 7 months ago
- 9a65102 Rename cmdq_shared to cmdq_state which will better reflect what it is by nicm · 4 years, 7 months ago
- 04cdd03 Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make its by nicm · 4 years, 7 months ago
- c20eb0c Make struct cmd local to cmd.c and move it out of tmux.h. by nicm · 4 years, 7 months ago
- 2349b1d Make a best effort to set xpixel and ypixel for each pane and add by nicm · 4 years, 12 months ago
- 647887b Add a "latest" window-size option which tries to size windows based on by nicm · 5 years ago
- 5f92f92 Add a per-pane option set. Pane options inherit from window options (so by nicm · 5 years ago
- 6469953 Support for windows larger than visible on the attached client. This has by nicm · 6 years ago
- 17cf1b2 Pass flags into cmd_find_from_* to fix prefer-unattached, reported by by nicm · 7 years ago
- ee45a8a Get rid of the extra layer of flags and cmd_prepare() and just store the by nicm · 8 years ago
- 2c0f826 Mouse bindings and hooks set up an initial current state when running a by nicm · 8 years ago
- 6b2009a Add a helper function for the most common format_create/defaults/expand pattern. by nicm · 8 years ago
- 7d23d01 Add a window or pane id "tag" to each format tree and use it to separate by nicm · 8 years ago
- b6099f3 Add -n to break-pane. by nicm · 8 years ago
- b342bd0 Mass rename struct cmd_q to struct cmdq_item and related. by nicm · 8 years ago
- e799037 Give window_create and window_create1 better names. by nicm · 8 years ago
- a81685b Add static in cmd-* and fix a few other nits. by nicm · 8 years ago
- c7851e0 Fix break-pane synopsis and some other tmux.1 bits. by nicm · 9 years ago
- 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
- a3129fd Instead of combined flags for -c, -s, -t, split into different sets by nicm · 9 years ago
- ecfeee2 Use member names in cmd_entry definitions so I stop getting confused by nicm · 9 years ago
- 4a4daf1 Instead of every command resolving the target (-t or -s) itself, prepare by nicm · 9 years ago
- 01831da Add cmdq as an argument to format_create and add a format for the by nicm · 9 years ago
- e0f26dc Remove format_create_flags and just pass flags to format_create. by nicm · 9 years ago
- 7236838 Mark new active pane changed after pane lost in window, and after by nicm · 9 years ago
- 44657bf Move struct options into options.c. by nicm · 9 years ago
- 8b5d5dc Redraw both src and dst sessions in break-pane. by nicm · 9 years ago
- 85120b3 Change break-pane to take target and source panes (-t and -s) in line by nicm · 9 years ago
- 4946f74 Wrap all the individual format_* calls in a single format_defaults functions. by nicm · 10 years ago
- 4c42381 Move template defines back into .c files. by nicm · 10 years ago
- 45dfc5a Instead of setting up the default keys by building the key struct by nicm · 10 years ago
- 2e98c90 Correct the dance to fix the active pane in join-pane by pulling the by nicm · 11 years ago
- d45c12b Remove the barely-used and unnecessary command check() function. by nicm · 11 years ago
- c71844d Add resize-pane -Z to temporary zoom the active pane to occupy the full by Nicholas Marriott · 12 years ago
- 20636d9 Add a command queue to standardize and simplify commands that call other by Nicholas Marriott · 12 years ago
- bb8457b Fix error reporting for client commands by adding a flag to by Nicholas Marriott · 12 years ago
- c519f9a evbuffer_readline returns allocated storage, don't leak it. by Nicholas Marriott · 12 years ago
- 73c6785 Use a separate define for each default format template and strip clutter by Nicholas Marriott · 12 years ago
- ede8312 Make command exec functions return an enum rather than -1/0/1 values and by Nicholas Marriott · 12 years ago
- df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
- ebf94bc Switch all of the various choose- and list- commands over to the format by Nicholas Marriott · 13 years ago
- 4e05a2c Add -P/-F flags to break-pane too, from George Nachman. by Nicholas Marriott · 13 years ago
- 8363d19 Move window name changes into wrapper function window_set_name, from by Nicholas Marriott · 13 years ago
- ec3efab Reset last pane properly when using break-pane as well, fixes a problem by Nicholas Marriott · 14 years ago
- 7502cb3 Clean up and simplify tmux command argument parsing. by Nicholas Marriott · 14 years ago
- 15a64b8 Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last by Nicholas Marriott · 15 years ago
- 76ef877 Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the by Nicholas Marriott · 15 years ago
- 9dd72b9 Add "grouped sessions" which have independent name, options, current window and by Nicholas Marriott · 15 years ago
- 3ad4de6 Add a base-index session option to specify the first index checked when looking by Nicholas Marriott · 15 years ago
- 071494d Merge pane number into the target specification for pane commands. Instead of by Nicholas Marriott · 15 years ago
- 34a82e7 Make all messages sent between the client and server fixed size. by Nicholas Marriott · 15 years ago
- 6036bdd Improved layout code. by Nicholas Marriott · 15 years ago
- 5f108d9 Having fixed flags for single-character getopt options is a bit hard to by Nicholas Marriott · 15 years ago
- 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago