summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-join-pane.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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).