2014-11-08 12:27:43 +00:00
|
|
|
/* $OpenBSD$ */
|
2007-11-23 17:52:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
2010-06-06 00:01:36 +00:00
|
|
|
#include <stdlib.h>
|
2007-11-23 17:52:54 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Paste paste buffer if present.
|
|
|
|
*/
|
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
enum cmd_retval cmd_paste_buffer_exec(struct cmd *, struct cmd_q *);
|
2011-01-07 14:45:34 +00:00
|
|
|
|
2012-03-07 13:36:19 +00:00
|
|
|
void cmd_paste_buffer_filter(struct window_pane *,
|
2012-11-27 20:22:12 +00:00
|
|
|
const char *, size_t, const char *, int);
|
2007-11-23 17:52:54 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_paste_buffer_entry = {
|
2008-06-20 17:31:48 +00:00
|
|
|
"paste-buffer", "pasteb",
|
2012-03-07 13:36:19 +00:00
|
|
|
"db:prs:t:", 0, 0,
|
2014-05-13 07:34:35 +00:00
|
|
|
"[-dpr] [-s separator] " CMD_BUFFER_USAGE " " CMD_TARGET_PANE_USAGE,
|
2011-01-07 14:45:34 +00:00
|
|
|
0,
|
|
|
|
cmd_paste_buffer_exec
|
2007-11-23 17:52:54 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
enum cmd_retval
|
2013-02-23 22:25:58 +00:00
|
|
|
cmd_paste_buffer_exec(struct cmd *self, struct cmd_q *cmdq)
|
2007-11-23 17:52:54 +00:00
|
|
|
{
|
2011-01-07 14:45:34 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct session *s;
|
|
|
|
struct paste_buffer *pb;
|
2014-05-13 07:34:35 +00:00
|
|
|
const char *sepstr, *bufname;
|
2011-01-07 14:45:34 +00:00
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
if (cmd_find_pane(cmdq, args_get(args, 't'), &s, &wp) == NULL)
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2014-05-13 07:34:35 +00:00
|
|
|
bufname = NULL;
|
|
|
|
if (args_has(args, 'b'))
|
|
|
|
bufname = args_get(args, 'b');
|
2011-01-07 14:45:34 +00:00
|
|
|
|
2014-05-13 07:34:35 +00:00
|
|
|
if (bufname == NULL)
|
2014-04-24 09:14:43 +00:00
|
|
|
pb = paste_get_top();
|
2008-06-20 17:31:48 +00:00
|
|
|
else {
|
2014-05-13 07:34:35 +00:00
|
|
|
pb = paste_get_name(bufname);
|
2010-12-30 22:39:49 +00:00
|
|
|
if (pb == NULL) {
|
2014-05-13 07:34:35 +00:00
|
|
|
cmdq_error(cmdq, "no buffer %s", bufname);
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-01-19 18:23:40 +00:00
|
|
|
}
|
2008-06-20 17:31:48 +00:00
|
|
|
}
|
2008-06-20 18:58:13 +00:00
|
|
|
|
2011-01-07 14:45:34 +00:00
|
|
|
if (pb != NULL) {
|
|
|
|
sepstr = args_get(args, 's');
|
|
|
|
if (sepstr == NULL) {
|
|
|
|
if (args_has(args, 'r'))
|
|
|
|
sepstr = "\n";
|
|
|
|
else
|
|
|
|
sepstr = "\r";
|
|
|
|
}
|
2014-11-05 23:25:02 +00:00
|
|
|
paste_send_pane(pb, wp, sepstr, args_has(args, 'p'));
|
2011-01-07 14:45:34 +00:00
|
|
|
}
|
2008-06-20 17:31:48 +00:00
|
|
|
|
|
|
|
/* Delete the buffer if -d. */
|
2011-01-07 14:45:34 +00:00
|
|
|
if (args_has(args, 'd')) {
|
2014-05-13 07:34:35 +00:00
|
|
|
if (bufname == NULL)
|
2014-04-24 09:14:43 +00:00
|
|
|
paste_free_top();
|
2008-06-20 17:31:48 +00:00
|
|
|
else
|
2014-05-13 07:34:35 +00:00
|
|
|
paste_free_name(bufname);
|
2008-06-02 22:09:49 +00:00
|
|
|
}
|
2007-11-23 17:52:54 +00:00
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2007-11-23 17:52:54 +00:00
|
|
|
}
|