summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-capture-pane.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Instead of sending all data to control mode clients as fast as possible,nicm2020-06-011-8/+13
* Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm2020-04-131-3/+3
* Make struct cmd local to cmd.c and move it out of tmux.h.nicm2020-04-131-3/+3
* Move alternate screen into the screen rather than the pane.nicm2020-03-311-2/+2
* Change input path so it doesn't require a pane.nicm2020-03-191-2/+2
* Rewrite the code for reading and writing files. Now, if the client isnicm2019-12-121-10/+7
* Add -N to capture-pane to preserve trailing spaces, from Leon Winter.nicm2019-08-011-5/+6
* Missing space in capture-pane usage, from Ben Boeckel.nicm2019-03-141-2/+2
* Allow multiple modes to be open in a pane. A stack of open modes is keptnicm2019-03-121-3/+2
* Add a separate mode struct for the active window mode if any.nicm2019-03-071-2/+2
* Get rid of the extra layer of flags and cmd_prepare() and just store thenicm2017-04-221-4/+4
* Merge clear-history into capture-pane.nicm2017-02-161-2/+21
* Escape backspace for capture-pane -P, from George Nachman.nicm2017-01-021-2/+2
* Mass rename struct cmd_q to struct cmdq_item and related.nicm2016-10-161-16/+16
* Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.nicm2016-10-141-2/+2
* Add static in cmd-* and fix a few other nits.nicm2016-10-101-11/+12
* 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-7/+10
* Instead of every command resolving the target (-t or -s) itself, preparenicm2015-12-131-6/+3
* Push stdout and stderr to clients more aggressively, and add an event tonicm2015-11-141-2/+2
* Don't free after calling paste_set but do after evbuffer_add, from Theonicm2015-10-161-3/+2
* Couple of memory leaks in error paths, from Frederik Vanderstraeten.nicm2015-10-071-2/+4
* Move input parser structs into input.c (removing fairly uselessnicm2015-05-081-7/+9
* Fix some format specifier nits, from Ben Boeckel.nicm2015-03-311-2/+2
* Instead of setting up the default keys by building the key structnicm2014-10-201-2/+1
* Add xreallocarray and remove nmemb argument from xrealloc.nicm2014-10-081-2/+2
* Make -S- and -E- mean the start and end to capture-pane to avoid havingnicm2014-06-201-19/+30
* Add support for named buffers. If you don't name a buffer, things worknicm2014-05-131-18/+9
* There is no longer a need for a paste_stack struct or for global_buffersnicm2014-04-241-3/+3
* Remove the barely-used and unnecessary command check() function.nicm2013-10-101-2/+1
* Handle empty pending output (not a failure) and add \n. From Georgenicm2013-03-251-2/+4
* Clean up capture-pane and add -P option to dump pending output, based onnicm2013-03-251-73/+127
* Preserve trailing spaces with capture-pane -J, from George Nachman.nicm2013-03-251-2/+2
* Add -q flags to shut up errors to capture-pane and show-options, fromnicm2013-03-251-47/+50
* Add -a to capture-pane to capture alternate screen, from George Nachman.nicm2013-03-251-9/+21
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-11/+10
* Add -C and -J to capture pane to escape control sequences and to joinnicm2013-03-221-7/+14
* Fix so capture-pane/save-buffer can work in control clients, from Georgenicm2013-03-221-2/+5
* Add -e flag to capture-pane to include embedded ANSI SGR escapenicm2013-03-221-13/+17
* Don't use a target-client for stdout, just always cmdclient.nicm2013-03-221-8/+4
* Support capture-pane -p to send to stdout.nicm2013-03-211-23/+36
* Use the CMD_*_USAGE defines consistently, from Thomas Adam.nicm2012-12-091-2/+3
* Make command exec functions return an enum rather than -1/0/1 values andnicm2012-07-111-8/+8
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-7/+7
* Extend history that can be captured to INT_MIN rather thannicm2011-12-271-3/+3
* Another memory leak from Tiago Cunha.nicm2011-08-301-1/+2
* Fix a couple of memory leaks, from Tiago Cunha.nicm2011-05-081-5/+7
* Allow a start and end line to be specified for capture-pane which may benicm2011-03-281-7/+35
* Clean up and simplify tmux command argument parsing.nicm2011-01-041-107/+28
* Remove some unused defines.nicm2010-12-301-2/+2