summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-display-message.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Move template defines back into .c files.nicm2014-10-201-1/+6
* Instead of setting up the default keys by building the key structnicm2014-10-201-2/+1
* Trivial style and spacing nits.nicm2013-10-101-4/+4
* Remove the barely-used and unnecessary command check() function.nicm2013-10-101-2/+1
* Handle no client better in display-message.nicm2013-03-251-6/+15
* Don't let display-message crash if no client, from George Nachman.nicm2013-03-251-2/+5
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-9/+9
* Fix error reporting for client commands by adding a flag tonicm2013-03-241-4/+2
* Allow display-message with no curclient.nicm2013-03-241-4/+4
* Use the CMD_*_USAGE defines consistently, from Thomas Adam.nicm2012-12-091-2/+3
* Use a separate define for each default format template and strip clutternicm2012-08-141-2/+2
* 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-2/+3
* Switch all of the various choose- and list- commands over to the formatnicm2012-05-221-2/+2
* Terminate strftime buffer properly and free format string, whoops. Fromnicm2012-03-031-3/+6
* Use format for display-message, based on a diff from George Nachman.nicm2012-02-231-11/+29
* Avoid using NULL in non-pointer contexts: use 0 for integer values and '\0'miod2011-04-061-2/+2
* Change -t on display-message to be target-pane for the #[A-Z]nicm2011-03-291-5/+18
* Clean up and simplify tmux command argument parsing.nicm2011-01-041-12/+11
* Add a -p flag to display-message to print the output rather than displaying innicm2009-11-241-4/+7
* Two new options, window-status-format and window-status-current-format, whichnicm2009-11-191-2/+2
* Don't interpret #() for display-message, it usually doesn't make sense and maynicm2009-11-191-2/+2
* Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in thenicm2009-11-131-2/+2
* Rather than running status-left, status-right and window title #() with popennicm2009-10-101-2/+2
* Make all messages sent between the client and server fixed size.nicm2009-07-261-3/+1
* - New command display-message (alias display) to display a message in thenicm2009-07-171-0/+65