summaryrefslogtreecommitdiffstats
path: root/cmd-join-pane.c
AgeCommit message (Expand)Author
2021-01-06Insert joined pane before the target pane with -b, like for split. Fromnicm
2020-07-04kill-window -a cannot just walk the list of windows because ifnicm
2020-05-16Add a client flag 'active-pane' which stores the active pane in thenicm
2020-04-22Improve join-pane, move-pane and break-pane:nicm
2020-04-13Move cmdq_state into cmd-queue.c.nicm
2020-04-13Rename cmdq_shared to cmdq_state which will better reflect what it isnicm
2020-04-13Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm
2020-04-13Make struct cmd local to cmd.c and move it out of tmux.h.nicm
2020-03-21Break code to convert an argument as a percentage into a common function.nicm
2020-01-02Add CMD_FIND_DEFAULT_MARKED to join-pane like move-pane, fromnicm
2019-11-18Add -f for full size to join-pane (like split-window), from Theo Buehler.nicm
2019-10-15Add support for percentage sizes for resize-pane ("-x 10%"). Also changenicm
2019-06-20Add a per-pane option set. Pane options inherit from window options (sonicm
2019-04-17Break new window and pane creation common code from various commands andnicm
2017-08-30Pass flags into cmd_find_from_* to fix prefer-unattached, reported bynicm
2017-04-22Get rid of the extra layer of flags and cmd_prepare() and just store thenicm
2017-04-22Mouse bindings and hooks set up an initial current state when running anicm
2016-10-16Use the notify name string instead of going via an enum and changenicm
2016-10-16Mass rename struct cmd_q to struct cmdq_item and related.nicm
2016-10-13Trying to do hooks generically is way too complicated and unreliable andnicm
2016-10-13Some improvements and bug fixes for hooks:nicm
2016-10-10Add static in cmd-* and fix a few other nits.nicm
2016-09-04Add support for performing a full width split (with splitw -f), rathernicm
2016-08-27Kill empty window after moving pane and updating current window, so thatnicm
2016-01-19I no longer use my SourceForge address so replace it.nicm
2015-12-14Instead of combined flags for -c, -s, -t, split into different setsnicm
2015-12-13Use member names in cmd_entry definitions so I stop getting confusednicm
2015-12-13Instead of every command resolving the target (-t or -s) itself, preparenicm
2015-06-18Use the SRCDST define for usage.nicm
2015-06-04Add support for a single "marked pane". There is one marked pane in thenicm
2014-10-20Instead of setting up the default keys by building the key structnicm
2014-04-17Correct the dance to fix the active pane in join-pane by pulling thenicm
2013-10-10Remove the barely-used and unnecessary command check() function.nicm
2013-03-24Add resize-pane -Z to temporary zoom the active pane to occupy the fullNicholas Marriott
2013-03-24Add a command queue to standardize and simplify commands that call otherNicholas Marriott
2012-07-11Make command exec functions return an enum rather than -1/0/1 values andNicholas Marriott
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2012-04-01Minor style nits - return ().Nicholas Marriott
2012-03-17Add notify hooks for various events, the functions are currently emptyNicholas Marriott
2012-03-03Add move-pane command (like join-pane but allows the same window). AlsoNicholas Marriott
2011-01-23While here, maximum percentage is 100 not INT_MAX. Oops.Nicholas Marriott
2011-01-23Size is -l not -s.Nicholas Marriott
2011-01-04Clean up and simplify tmux command argument parsing.Nicholas Marriott
2010-08-11Usage string fixes from Ben Boeckel.Nicholas Marriott
2010-04-17Fix use-after-free of the window link when it is part of a groupedNicholas Marriott
2010-04-04Should be -s for src pane.Nicholas Marriott
2010-01-07New command, join-pane, to split and move an existing pane into the space (likeNicholas Marriott