2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* List paste buffers.
|
|
|
|
*/
|
|
|
|
|
2014-10-20 23:35:28 +00:00
|
|
|
#define LIST_BUFFERS_TEMPLATE \
|
|
|
|
"#{buffer_name}: #{buffer_size} bytes: \"#{buffer_sample}\""
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_list_buffers_exec(struct cmd *, struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_list_buffers_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "list-buffers",
|
|
|
|
.alias = "lsb",
|
|
|
|
|
|
|
|
.args = { "F:", 0, 0 },
|
|
|
|
.usage = "[-F format]",
|
|
|
|
|
2016-10-14 22:14:22 +00:00
|
|
|
.flags = CMD_AFTERHOOK,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_list_buffers_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_list_buffers_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2012-05-22 11:35:37 +00:00
|
|
|
struct args *args = self->args;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct paste_buffer *pb;
|
2012-05-22 11:35:37 +00:00
|
|
|
struct format_tree *ft;
|
|
|
|
char *line;
|
|
|
|
const char *template;
|
|
|
|
|
|
|
|
if ((template = args_get(args, 'F')) == NULL)
|
2012-08-14 08:51:53 +00:00
|
|
|
template = LIST_BUFFERS_TEMPLATE;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2014-05-13 07:34:35 +00:00
|
|
|
pb = NULL;
|
|
|
|
while ((pb = paste_walk(pb)) != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
ft = format_create(item, 0);
|
2015-11-12 11:09:11 +00:00
|
|
|
format_defaults_paste_buffer(ft, pb);
|
2012-05-22 11:35:37 +00:00
|
|
|
|
|
|
|
line = format_expand(ft, template);
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_print(item, "%s", line);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(line);
|
2012-05-22 11:35:37 +00:00
|
|
|
|
|
|
|
format_free(ft);
|
2009-08-18 12:26:37 +00:00
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|