summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-join-pane.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add split-window -Z to start the pane zoomed, GitHub issue 2591.nicm2021-03-111-2/+2
* Insert joined pane before the target pane with -b, like for split. Fromnicm2021-01-061-2/+5
* kill-window -a cannot just walk the list of windows because ifnicm2020-07-041-2/+2
* Add a client flag 'active-pane' which stores the active pane in thenicm2020-05-161-1/+2
* Improve join-pane, move-pane and break-pane:nicm2020-04-221-14/+5
* Move cmdq_state into cmd-queue.c.nicm2020-04-131-3/+2
* Rename cmdq_shared to cmdq_state which will better reflect what it isnicm2020-04-131-3/+3
* Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm2020-04-131-7/+10
* Make struct cmd local to cmd.c and move it out of tmux.h.nicm2020-04-131-3/+3
* Break code to convert an argument as a percentage into a common function.nicm2020-03-211-34/+19
* Add CMD_FIND_DEFAULT_MARKED to join-pane like move-pane, fromnicm2020-01-021-2/+2
* Add -f for full size to join-pane (like split-window), from Theo Buehler.nicm2019-11-181-6/+9
* Add support for percentage sizes for resize-pane ("-x 10%"). Also changenicm2019-10-151-11/+30
* Add a per-pane option set. Pane options inherit from window options (sonicm2019-06-201-1/+3
* Break new window and pane creation common code from various commands andnicm2019-04-171-4/+8
* Pass flags into cmd_find_from_* to fix prefer-unattached, reported bynicm2017-08-301-2/+2
* Get rid of the extra layer of flags and cmd_prepare() and just store thenicm2017-04-221-10/+10
* Mouse bindings and hooks set up an initial current state when running anicm2017-04-221-1/+3
* Use the notify name string instead of going via an enum and changenicm2016-10-161-3/+3
* Mass rename struct cmd_q to struct cmdq_item and related.nicm2016-10-161-13/+13
* Trying to do hooks generically is way too complicated and unreliable andnicm2016-10-131-8/+1
* Some improvements and bug fixes for hooks:nicm2016-10-131-1/+8
* Add static in cmd-* and fix a few other nits.nicm2016-10-101-11/+9
* Add support for performing a full width split (with splitw -f), rathernicm2016-09-041-2/+2
* Kill empty window after moving pane and updating current window, so thatnicm2016-08-271-6/+6
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Instead of combined flags for -c, -s, -t, split into different setsnicm2015-12-141-3/+9
* Use member names in cmd_entry definitions so I stop getting confusednicm2015-12-131-11/+17
* Instead of every command resolving the target (-t or -s) itself, preparenicm2015-12-131-9/+8
* Use the SRCDST define for usage.nicm2015-06-181-3/+3
* Add support for a single "marked pane". There is one marked pane in thenicm2015-06-041-2/+2
* Instead of setting up the default keys by building the key structnicm2014-10-201-18/+1
* Correct the dance to fix the active pane in join-pane by pulling thenicm2014-04-171-6/+2
* Remove the barely-used and unnecessary command check() function.nicm2013-10-101-3/+1
* Add resize-pane -Z to temporary zoom the active pane to occupy the fullnicm2013-03-241-1/+3
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-13/+13
* Make command exec functions return an enum rather than -1/0/1 values andnicm2012-07-111-14/+14
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-3/+3
* Minor style nits - return ().nicm2012-04-011-2/+2
* Add notify hooks for various events, the functions are currently emptynicm2012-03-171-1/+4
* Add move-pane command (like join-pane but allows the same window). Alsonicm2012-03-031-7/+30
* While here, maximum percentage is 100 not INT_MAX. Oops.nicm2011-01-231-2/+2
* Size is -l not -s.nicm2011-01-231-3/+3
* Clean up and simplify tmux command argument parsing.nicm2011-01-041-156/+44
* Usage string fixes from Ben Boeckel.nicm2010-08-111-2/+2
* Fix use-after-free of the window link when it is part of a groupednicm2010-04-171-3/+4
* Should be -s for src pane.nicm2010-04-041-2/+2
* New command, join-pane, to split and move an existing pane into the space (likenicm2010-01-071-0/+257