summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-join-pane.c (follow)
Commit message (Collapse)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
| | | | Takeshi Banse.
* kill-window -a cannot just walk the list of windows because ifnicm2020-07-041-2/+2
| | | | | | renumber-windows is on, the window it wants to keep could be moved. Change to renumber afterwards and also behave better if the window is linked into the session twice. GitHub issue 2287.
* Add a client flag 'active-pane' which stores the active pane in thenicm2020-05-161-1/+2
| | | | | | | | | client and allows it to be changed independently from the real active pane stored in the window. This is can be used with session groups which allow an independent current window (although it would be nice to have a flag for this too and remove session groups). The client active pane is only really useful interactively, many things (hooks, window-style, zooming) still use the window active pane.
* Improve join-pane, move-pane and break-pane:nicm2020-04-221-14/+5
| | | | | | | | | | | - There is no need for join-pane and move-pane to be different. - break-pane can just behave like move-window if the source has only one pane, instead of failing. - Add -a to break-pane like move-window. Also add missing man page bits for previous window-tree.c changes. GitHub issue 2176.
* 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
| | | | (going to be) used for.
* Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm2020-04-131-7/+10
| | | | use more clearly defined and preparation for some future work).
* 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
| | | | davidegirardi in GitHub issue 2046.
* 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
| | | | | split-window and join-pane -l to accept similar percentages and deprecate -p. From Anindya Mukherjee.
* Add a per-pane option set. Pane options inherit from window options (sonicm2019-06-201-1/+3
| | | | | | | | | | | | there should be no change to existing behaviour) and are set and shown with set-option -p and show-options -p. Change remain-on-exit and window-style/window-active-style to be pane options (some others will be changed later). This makes select-pane -P and -g unnecessary so no longer document them (they still work) and no longer document set-window-option and show-window-options in favour of set-option -w and show-options -w.
* Break new window and pane creation common code from various commands andnicm2019-04-171-4/+8
| | | | window.c into a separate file spawn.c.
* Pass flags into cmd_find_from_* to fix prefer-unattached, reported bynicm2017-08-301-2/+2
| | | | Thomas Sattler.
* Get rid of the extra layer of flags and cmd_prepare() and just store thenicm2017-04-221-10/+10
| | | | | | CMD_FIND_* flags in the cmd_entry and call it for the command. Commands with special requirements call it themselves and update the target for hooks to use.
* Mouse bindings and hooks set up an initial current state when running anicm2017-04-221-1/+3
| | | | | | | | | | | | | | | command. This is used for the session, window and pane for all commands in the command sequence if there is no -t or -s. However, using it for all commands in the command sequence means that if the active pane or current session is changed, subsequent commands still use the previous state. So make commands which explicitly change the current state (such as neww and selectp) update it themselves for later commands. Commands which may invalidate the state (like killp) are already OK because an invalid state will be ignored. Also fill in the current state for all key bindings rather than just the mouse, so that any omissions are easier to spot.
* Use the notify name string instead of going via an enum and changenicm2016-10-161-3/+3
| | | | existing hooks to use notifys instead.
* 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
| | | | | | | | | | | | | | | | | | confusing, particularly trying to automatically figure out what target hooks should be using. So simplify it: - drop before hooks entirely, they don't seem to be very useful; - commands with special requirements now fire their own after hook (for example, if they change session or window, or if they have -t and -s and need to choose which one the hook uses as current target); - commands with no special requirements can have the CMD_AFTERHOOK flag added and they will use the -t state. At the moment new-session, new-window, split-window fire their own hook, and display-message uses the flag. The remaining commands still need to be looked at.
* Some improvements and bug fixes for hooks:nicm2016-10-131-1/+8
| | | | | | | | | | | | | | | | | | | | | - Prepare the state again before the "after" hooks are run, because the command may have killed or moved windows. - Use the hooks list from the newly prepared target, not the old hooks list (only matters for new-session really). - Correctly detect an invalid current state and ignore it in cmd_find_target ("killw; swapw"). - Change neww, new, killp, killw, splitw, swapp, swapw to update the current state (used if no explicit target is given) to something more useful after they have finished. For example, neww changes it to the newly created window. Hooks are still relatively new and primitive so there are likely to be more changes to come. Parts based on bug reports from Uwe Werler and Iblis Lin.
* 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
| | | | than splitting the current cell. From Stephen Kent.
* Kill empty window after moving pane and updating current window, so thatnicm2016-08-271-6/+6
| | | | | index is still valid before renumber-windows happens. Fixes issue reported by Eric Pruitt.
* 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
| | | | using an enum and simplify the parsing code.
* Use member names in cmd_entry definitions so I stop getting confusednicm2015-12-131-11/+17
| | | | about the order.
* Instead of every command resolving the target (-t or -s) itself, preparenicm2015-12-131-9/+8
| | | | | | | | | | | | | | | | the state (client, session, winlink, pane) for it it before entering the command. Each command provides some flags that tell the prepare step what it is expecting. This is a requirement for having hooks on commands (for example, if you hook "select-window -t1:2", the hook command should to operate on window 1:2 not whatever it thinks is the current window), and should allow some other target improvements. The old cmd_find_* functions remain for the moment but that layer will be dropped later. Joint work with Thomas Adam.
* 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
| | | | | | | | | server at a time; it may be toggled or cleared with select-pane -m and -M (the border is highlighted). A new target '~' or '{marked}' specifies the marked pane to commands and it is the default target for the swap-pane and join-pane -s flag (this makes them much simpler to use - mark the source pane and then change to the target pane to run swapp or joinp).
* Instead of setting up the default keys by building the key structnicm2014-10-201-18/+1
| | | | | | | | | directly with a helper function in the cmd_entry, include a table of bind-key commands and pass them through the command parser and a temporary cmd_q. As well as being smaller, this will allow default bindings to be command sequences which will probably be needed soon.
* Correct the dance to fix the active pane in join-pane by pulling thenicm2014-04-171-6/+2
| | | | | (right) code from break-pane and window_remove_pane into a helper function.
* 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
| | | | | | | | | | | | | | window or unzoom (restored to the normal layout) if it already zoomed, bound to C-b z by default. The pane is unzoomed on pretty much any excuse whatsoever. We considered making this a new layout but the requirements are quite different from layouts so decided it is better as a special case. Each current layout cell is saved, a temporary one-cell layout generated and all except the active pane set to NULL. Prompted by suggestions and scripts from several. Thanks to Aaron Jensen and Thiago Padilha for testing an earlier version.
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-13/+13
| | | | | | | | | | | | | | | | | | | | | | commands and allow a command to block execution of subsequent commands. This allows run-shell and if-shell to be synchronous which has been much requested. Each client has a default command queue and commands are consumed one at a time from it. A command may suspend execution from the queue by returning CMD_RETURN_WAIT and then resume it by calling cmd_continue() - for example run-shell does this from the callback that is fired after the job is freed. When the command queue becomes empty, command clients are automatically exited (unless attaching). A callback is also fired - this is used for nested commands in, for example, if-shell which can block execution of the client's cmdq until a new cmdq becomes empty. Also merge all the old error/info/print functions together and lose the old curclient/cmdclient distinction - a cmdq is bound to one client (or none if in the configuration file), this is a command client if c->session is NULL otherwise an attached client.
* Make command exec functions return an enum rather than -1/0/1 values andnicm2012-07-111-14/+14
| | | | | | add a new value to mean "leave client running but don't attach" to fix problems with using some commands in a command sequence. Most of the work by Thomas Adam, problem reported by "jspenguin" on SF bug 3535531.
* 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
| | | | stubs but will be filled in for control mode later. From George Nachman.
* Add move-pane command (like join-pane but allows the same window). Alsonicm2012-03-031-7/+30
| | | | | -b flag to join-pane and move-pane to place the pane to the left or above. From George Nachman.
* 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
| | | | | | | | | | | | | | | | | | | Originally, tmux commands were parsed in the client process into a struct with the command data which was then serialised and sent to the server to be executed. The parsing was later moved into the server (an argv was sent from the client), but the parse step and intermediate struct was kept. This change removes that struct and the separate parse step. Argument parsing and printing is now common to all commands (in arguments.c) with each command left with just an optional check function (to validate the arguments at parse time), the exec function and a function to set up any key bindings (renamed from the old init function). This is overall more simple and consistent. There should be no changes to any commands behaviour or syntax although as this touches every command please watch for any unexpected changes.
* 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
| | | | session (and hence could have been recreated), from Micah Cowan.
* 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
splitw then movep, or the reverse of breakp).