1 /* $OpenBSD: cmd-select-pane.c,v 1.20 2014/10/21 22:22:04 nicm Exp $ */ 2 3 /* 4 * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER 15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING 16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19 #include <sys/types.h> 20 21 #include "tmux.h" 22 23 /* 24 * Select pane. 25 */ 26 27 enum cmd_retval cmd_select_pane_exec(struct cmd *, struct cmd_q *); 28 29 const struct cmd_entry cmd_select_pane_entry = { 30 "select-pane", "selectp", 31 "DdeLlRt:U", 0, 0, 32 "[-DdeLlRU] " CMD_TARGET_PANE_USAGE, 33 0, 34 cmd_select_pane_exec 35 }; 36 37 const struct cmd_entry cmd_last_pane_entry = { 38 "last-pane", "lastp", 39 "det:", 0, 0, 40 "[-de] " CMD_TARGET_WINDOW_USAGE, 41 0, 42 cmd_select_pane_exec 43 }; 44 45 enum cmd_retval 46 cmd_select_pane_exec(struct cmd *self, struct cmd_q *cmdq) 47 { 48 struct args *args = self->args; 49 struct winlink *wl; 50 struct window_pane *wp; 51 52 if (self->entry == &cmd_last_pane_entry || args_has(args, 'l')) { 53 wl = cmd_find_window(cmdq, args_get(args, 't'), NULL); 54 if (wl == NULL) 55 return (CMD_RETURN_ERROR); 56 57 if (wl->window->last == NULL) { 58 cmdq_error(cmdq, "no last pane"); 59 return (CMD_RETURN_ERROR); 60 } 61 62 if (args_has(self->args, 'e')) 63 wl->window->last->flags &= ~PANE_INPUTOFF; 64 else if (args_has(self->args, 'd')) 65 wl->window->last->flags |= PANE_INPUTOFF; 66 else { 67 server_unzoom_window(wl->window); 68 window_set_active_pane(wl->window, wl->window->last); 69 server_status_window(wl->window); 70 server_redraw_window_borders(wl->window); 71 } 72 73 return (CMD_RETURN_NORMAL); 74 } 75 76 if ((wl = cmd_find_pane(cmdq, args_get(args, 't'), NULL, &wp)) == NULL) 77 return (CMD_RETURN_ERROR); 78 79 server_unzoom_window(wp->window); 80 if (!window_pane_visible(wp)) { 81 cmdq_error(cmdq, "pane not visible"); 82 return (CMD_RETURN_ERROR); 83 } 84 85 if (args_has(self->args, 'L')) 86 wp = window_pane_find_left(wp); 87 else if (args_has(self->args, 'R')) 88 wp = window_pane_find_right(wp); 89 else if (args_has(self->args, 'U')) 90 wp = window_pane_find_up(wp); 91 else if (args_has(self->args, 'D')) 92 wp = window_pane_find_down(wp); 93 if (wp == NULL) { 94 cmdq_error(cmdq, "pane not found"); 95 return (CMD_RETURN_ERROR); 96 } 97 98 if (args_has(self->args, 'e')) 99 wp->flags &= ~PANE_INPUTOFF; 100 else if (args_has(self->args, 'd')) 101 wp->flags |= PANE_INPUTOFF; 102 else if (window_set_active_pane(wl->window, wp)) { 103 server_status_window(wl->window); 104 server_redraw_window_borders(wl->window); 105 } 106 107 return (CMD_RETURN_NORMAL); 108 } 109