summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/cmd-join-pane.c
AgeCommit message (Expand)Author
2023-01-17Update palette when moving a pane, GitHub issue 3437.Nicholas Marriott
2022-06-07Expand arguments to some commands where it makes sense, GitHub issueNicholas Marriott
2021-08-21Add args parsing callback for some future work, currently unused.Nicholas Marriott
2021-03-11Add split-window -Z to start the pane zoomed, GitHub issue 2591.Nicholas Marriott
2021-01-06Insert joined pane before the target pane with -b, like for split. FromNicholas Marriott
2020-07-04kill-window -a cannot just walk the list of windows because ifNicholas Marriott
2020-05-16Add a client flag 'active-pane' which stores the active pane in theNicholas Marriott
2020-04-22Improve join-pane, move-pane and break-pane:Nicholas Marriott
2020-04-13Move cmdq_state into cmd-queue.c.Nicholas Marriott
2020-04-13Rename cmdq_shared to cmdq_state which will better reflect what it isNicholas Marriott
2020-04-13Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsNicholas Marriott
2020-04-13Make struct cmd local to cmd.c and move it out of tmux.h.Nicholas Marriott
2020-03-21Break code to convert an argument as a percentage into a common function.Nicholas Marriott
2020-01-02Add CMD_FIND_DEFAULT_MARKED to join-pane like move-pane, fromNicholas Marriott
2019-11-18Add -f for full size to join-pane (like split-window), from Theo Buehler.Nicholas Marriott
2019-10-15Add support for percentage sizes for resize-pane ("-x 10%"). Also changeNicholas Marriott
2019-06-20Add a per-pane option set. Pane options inherit from window options (soNicholas Marriott
2019-04-17Break new window and pane creation common code from various commands andNicholas Marriott
2017-08-30Pass flags into cmd_find_from_* to fix prefer-unattached, reported byNicholas Marriott
2017-04-22Get rid of the extra layer of flags and cmd_prepare() and just store theNicholas Marriott
2017-04-22Mouse bindings and hooks set up an initial current state when running aNicholas Marriott
2016-10-16Use the notify name string instead of going via an enum and changeNicholas Marriott
2016-10-16Mass rename struct cmd_q to struct cmdq_item and related.Nicholas Marriott
2016-10-13Trying to do hooks generically is way too complicated and unreliable andNicholas Marriott
2016-10-13Some improvements and bug fixes for hooks:Nicholas Marriott
2016-10-10Add static in cmd-* and fix a few other nits.Nicholas Marriott
2016-09-04Add support for performing a full width split (with splitw -f), ratherNicholas Marriott
2016-08-27Kill empty window after moving pane and updating current window, so thatNicholas Marriott
2016-01-19I no longer use my SourceForge address so replace it.Nicholas Marriott
2015-12-14Instead of combined flags for -c, -s, -t, split into different setsNicholas Marriott
2015-12-13Use member names in cmd_entry definitions so I stop getting confusedNicholas Marriott
2015-12-13Instead of every command resolving the target (-t or -s) itself, prepareNicholas Marriott
2015-06-18Use the SRCDST define for usage.Nicholas Marriott
2015-06-04Add support for a single "marked pane". There is one marked pane in theNicholas Marriott
2014-10-20Instead of setting up the default keys by building the key structNicholas Marriott
2014-04-17Correct the dance to fix the active pane in join-pane by pulling theNicholas Marriott
2013-10-10Remove the barely-used and unnecessary command check() function.Nicholas Marriott
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