summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-display-panes.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add -N flag to display-panes to ignore keys, GitHub issue 2473.nicm2020-11-261-5/+12
* Only print below number when there is enough space.nicm2020-09-011-2/+2
* Allow a-z keys for display-panes to jump to higher numbered panes.nicm2020-09-011-31/+62
* Do not hoke into struct window_pane from the tty code and instead setnicm2020-05-161-7/+3
* Make client -c and -t handling common in cmd-queue.c and try to benicm2020-04-131-10/+6
* Add helpers for the simple case of parse string and add to command queue.nicm2020-04-131-19/+7
* When adding a list of commands to the queue, instead of automaticallynicm2020-04-131-2/+2
* Make struct cmd local to cmd.c and move it out of tmux.h.nicm2020-04-131-2/+2
* Add support for overlay popup boxes to show text or output temporarilynicm2020-03-241-2/+2
* Pass keys that aren't 0-9 on to normal key processing when display-panesnicm2019-06-261-2/+2
* Add a cmdq_continue function rather than twiddling the flag directly.nicm2019-06-181-2/+2
* Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm2019-05-231-19/+18
* Replace the various identical error callbacks with a single one in cmd-queue.c.nicm2019-05-201-17/+8
* Add a flag to redraw only the overlay, and remove the overlay on resize.nicm2019-05-081-2/+1
* Move around the display-panes identify code to make it a bit morenicm2019-05-071-53/+203
* Add -b to display-panes like run-shell, GitHub issue 1559.nicm2019-02-061-8/+19
* Add [template] to display-panes and choose-{buffer,client,tree} usagekn2018-11-151-2/+2
* Make display-panes block the client until a pane is chosen or it times out.nicm2018-08-021-14/+17
* Add -d flag to display-panes to specify timeout, and make 0 mean nonicm2017-08-161-4/+17
* Get rid of the extra layer of flags and cmd_prepare() and just store thenicm2017-04-221-4/+5
* Move the client identify (display-panes) code into server-client.c.nicm2017-03-091-2/+2
* It is silly for cmd_list_parse to return an integer error when it couldnicm2017-01-151-2/+3
* Mass rename struct cmd_q to struct cmdq_item and related.nicm2016-10-161-16/+17
* Rewrite command queue handling. Each client still has a command queue,nicm2016-10-161-18/+34
* Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.nicm2016-10-141-2/+2
* Allow a command to be specified to display-panes, similar tonicm2016-06-161-6/+55
* 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-2/+4
* Use member names in cmd_entry definitions so I stop getting confusednicm2015-12-131-6/+9
* Instead of every command resolving the target (-t or -s) itself, preparenicm2015-12-131-10/+4
* Instead of setting up the default keys by building the key structnicm2014-10-201-2/+1
* Remove the barely-used and unnecessary command check() function.nicm2013-10-101-2/+1
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-4/+4
* Fix error reporting for client commands by adding a flag tonicm2013-03-241-2/+2
* Make command exec functions return an enum rather than -1/0/1 values andnicm2012-07-111-5/+5
* Clean up and simplify tmux command argument parsing.nicm2011-01-041-10/+9
* Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in thenicm2009-11-131-2/+2
* Add a new display-panes command, with two options (display-panes-colour andnicm2009-08-311-0/+52