2009-07-14 06:43:33 +00:00
|
|
|
/* $Id: cmd-copy-mode.c,v 1.21 2009-07-14 06:43:32 nicm Exp $ */
|
2007-11-23 14:28:47 +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>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2009-01-10 18:08:55 +00:00
|
|
|
* Enter copy mode.
|
2007-11-23 14:28:47 +00:00
|
|
|
*/
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int cmd_copy_mode_exec(struct cmd *, struct cmd_ctx *);
|
2007-11-23 14:28:47 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_copy_mode_entry = {
|
2008-06-18 22:21:51 +00:00
|
|
|
"copy-mode", NULL,
|
2009-07-14 06:42:22 +00:00
|
|
|
"[-u] " CMD_TARGET_WINDOW_USAGE,
|
2009-07-14 06:43:33 +00:00
|
|
|
0, CMD_CHFLAG('u'),
|
2008-06-05 21:25:00 +00:00
|
|
|
cmd_target_init,
|
|
|
|
cmd_target_parse,
|
2007-12-06 09:46:23 +00:00
|
|
|
cmd_copy_mode_exec,
|
2008-06-05 21:25:00 +00:00
|
|
|
cmd_target_send,
|
|
|
|
cmd_target_recv,
|
|
|
|
cmd_target_free,
|
2008-06-03 05:35:51 +00:00
|
|
|
NULL
|
2007-11-23 14:28:47 +00:00
|
|
|
};
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_copy_mode_exec(struct cmd *self, struct cmd_ctx *ctx)
|
2007-11-23 14:28:47 +00:00
|
|
|
{
|
2008-06-05 21:25:00 +00:00
|
|
|
struct cmd_target_data *data = self->data;
|
|
|
|
struct winlink *wl;
|
2009-06-29 22:04:07 +00:00
|
|
|
struct window_pane *wp;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
if ((wl = cmd_find_window(ctx, data->target, NULL)) == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2009-06-29 22:04:07 +00:00
|
|
|
wp = wl->window->active;
|
2007-11-23 14:28:47 +00:00
|
|
|
|
2009-06-29 22:04:07 +00:00
|
|
|
window_pane_set_mode(wp, &window_copy_mode);
|
2009-07-14 06:43:33 +00:00
|
|
|
if (wp->mode == &window_copy_mode && data->chflags & CMD_CHFLAG('u'))
|
2009-06-29 22:04:07 +00:00
|
|
|
window_copy_pageup(wp);
|
2009-01-27 23:35:44 +00:00
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2007-11-23 14:28:47 +00:00
|
|
|
}
|