summaryrefslogtreecommitdiffstats
path: root/cmd-display-message.c
AgeCommit message (Expand)Author
2023-02-05Extend display-message to work for control clients. GitHub issue 3449.nicm
2022-11-03Add a -l flag to display-message to disable format expansion, from Aaronnicm
2021-10-07Handle splitw -I correctly when used from an attached client, GitHubnicm
2021-08-21Add args parsing callback for some future work, currently unused.nicm
2021-08-20Hide struct args behind a couple of accessor functions.nicm
2021-08-14Missing argument specifier for -c.nicm
2021-04-12Add a flag to disable keys to close a message, GitHub issue 2625.nicm
2021-04-07When display-message used in config file, show the message after thenicm
2020-07-27Add a -d option to display-message to set delay, from theonekeyg atnicm
2020-05-16Support embedded styles in the display-message message, GitHub issuenicm
2020-04-13Make client -c and -t handling common in cmd-queue.c and try to benicm
2020-04-13Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm
2020-04-13Make struct cmd local to cmd.c and move it out of tmux.h.nicm
2019-05-30Remove a leftover abort and some fixes from cppcheck.nicm
2019-05-03Allow panes to be empty (no command), output can be piped to them withnicm
2019-03-18Add format variables for the default formats for the various modesnicm
2019-03-15Add a -v flag to display-message to show verbose messages as the formatnicm
2019-03-14Store the time in the format tree rather than passing it around.nicm
2019-03-14Accept 0 time as a shorthand for now to format_expand_time.nicm
2018-04-23Remove unnecessary brackets.nicm
2018-04-18Change how display-message uses the client. Originally it was onlynicm
2017-05-01In order that people can use formats like #D in #() in the status linenicm
2017-04-22Get rid of the extra layer of flags and cmd_prepare() and just store thenicm
2017-02-03Add a window or pane id "tag" to each format tree and use it to separatenicm
2016-10-16Mass rename struct cmd_q to struct cmdq_item and related.nicm
2016-10-13Trying to do hooks generically is way too complicated and unreliable andnicm
2016-10-10Add static in cmd-* and fix a few other nits.nicm
2016-08-25Do not crash if display-message used without a client, issue reported bynicm
2015-12-14Instead of combined flags for -c, -s, -t, split into different setsnicm
2015-12-13Use member names in cmd_entry definitions so I stop getting confusednicm
2015-12-13-c needs to be able for fail for display-message.nicm
2015-12-13Instead of every command resolving the target (-t or -s) itself, preparenicm
2015-12-11Add cmdq as an argument to format_create and add a format for thenicm
2015-12-08Remove format_create_flags and just pass flags to format_create.nicm
2015-11-18Use format_expand_time for display-message.nicm
2015-04-27Rewrite of the target resolution internals to be simpler and morenicm
2015-02-05Wrap all the individual format_* calls in a single format_defaultsnicm
2014-10-20Move template defines back into .c files.nicm
2014-10-20Instead of setting up the default keys by building the key structnicm
2013-10-10Trivial style and spacing nits.nicm
2013-03-25Handle no client better in display-message.Nicholas Marriott
2013-03-24Add a command queue to standardize and simplify commands that call otherNicholas Marriott
2013-03-24Fix error reporting for client commands by adding a flag toNicholas Marriott
2012-12-09Use the CMD_*_USAGE defines consistently, from Thomas Adam.Nicholas Marriott
2012-08-14Use a separate define for each default format template and strip clutterNicholas Marriott
2012-07-11Make command exec functions return an enum rather than -1/0/1 values andNicholas Marriott
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2012-05-22Switch all of the various choose- and list- commands over to the formatNicholas Marriott
2012-03-03Terminate strftime buffer properly and free format string, whoops. FromNicholas Marriott
2012-02-23Use format for display-message, based on a diff from George Nachman.Nicholas Marriott