2010-01-05 23:50:22 +00:00
|
|
|
/* $Id: cmd-copy-mode.c,v 1.26 2010-01-05 23:50:22 tcunha 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-10-06 14:14:07 +00:00
|
|
|
void cmd_copy_mode_init(struct cmd *, int);
|
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-08-20 11:37:46 +00:00
|
|
|
"[-u] " CMD_TARGET_PANE_USAGE,
|
2009-11-14 17:56:39 +00:00
|
|
|
0, "u",
|
2009-10-06 14:14:07 +00:00
|
|
|
cmd_copy_mode_init,
|
2008-06-05 21:25:00 +00:00
|
|
|
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_free,
|
2010-01-05 23:50:22 +00:00
|
|
|
cmd_target_print
|
2007-11-23 14:28:47 +00:00
|
|
|
};
|
|
|
|
|
2009-10-06 14:14:07 +00:00
|
|
|
void
|
|
|
|
cmd_copy_mode_init(struct cmd *self, int key)
|
|
|
|
{
|
|
|
|
struct cmd_target_data *data;
|
|
|
|
|
|
|
|
cmd_target_init(self, key);
|
|
|
|
data = self->data;
|
|
|
|
|
|
|
|
switch (key) {
|
|
|
|
case KEYC_PPAGE:
|
2009-11-14 17:56:39 +00:00
|
|
|
cmd_set_flag(&data->chflags, 'u');
|
2009-10-06 14:14:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2009-06-29 22:04:07 +00:00
|
|
|
struct window_pane *wp;
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2009-08-20 11:37:46 +00:00
|
|
|
if (cmd_find_pane(ctx, data->target, NULL, &wp) == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
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-11-14 17:56:39 +00:00
|
|
|
if (wp->mode == &window_copy_mode && cmd_check_flag(data->chflags, '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
|
|
|
}
|