diff options
author | nicm <nicm> | 2014-10-20 23:35:28 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-10-20 23:35:28 +0000 |
commit | 4c42381410891c43b1326e95f150dfcf637b1e69 (patch) | |
tree | dafad386f15b3c62d0bc3f3f07eb290bd05c5ad6 /cmd-list-clients.c | |
parent | 900f6fc17e6764377a8e293ce742fb41f1add9bd (diff) | |
download | rtmux-4c42381410891c43b1326e95f150dfcf637b1e69.tar.gz rtmux-4c42381410891c43b1326e95f150dfcf637b1e69.tar.bz2 rtmux-4c42381410891c43b1326e95f150dfcf637b1e69.zip |
Move template defines back into .c files.
Diffstat (limited to 'cmd-list-clients.c')
-rw-r--r-- | cmd-list-clients.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd-list-clients.c b/cmd-list-clients.c index 0cfbdfa7..292be722 100644 --- a/cmd-list-clients.c +++ b/cmd-list-clients.c @@ -28,6 +28,11 @@ * List all clients. */ +#define LIST_CLIENTS_TEMPLATE \ + "#{client_tty}: #{session_name} " \ + "[#{client_width}x#{client_height} #{client_termname}]" \ + "#{?client_utf8, (utf8),} #{?client_readonly, (ro),}" + enum cmd_retval cmd_list_clients_exec(struct cmd *, struct cmd_q *); const struct cmd_entry cmd_list_clients_entry = { |