mirror of
https://github.com/tmate-io/tmate.git
synced 2025-02-16 18:31:40 +01:00
Bind mouse dragging so that it is passed through to applications if they
want it rather than entering copy mode.
This commit is contained in:
parent
4cf4302962
commit
d1337053b6
@ -68,8 +68,11 @@ cmd_copy_mode_exec(struct cmd *self, struct cmd_q *cmdq)
|
|||||||
return (CMD_RETURN_NORMAL);
|
return (CMD_RETURN_NORMAL);
|
||||||
window_copy_init_from_pane(wp);
|
window_copy_init_from_pane(wp);
|
||||||
}
|
}
|
||||||
if (args_has(args, 'M'))
|
if (args_has(args, 'M')) {
|
||||||
|
if (wp->mode != NULL && wp->mode != &window_copy_mode)
|
||||||
|
return (CMD_RETURN_NORMAL);
|
||||||
window_copy_start_drag(c, &cmdq->item->mouse);
|
window_copy_start_drag(c, &cmdq->item->mouse);
|
||||||
|
}
|
||||||
if (wp->mode == &window_copy_mode && args_has(self->args, 'u'))
|
if (wp->mode == &window_copy_mode && args_has(self->args, 'u'))
|
||||||
window_copy_pageup(wp);
|
window_copy_pageup(wp);
|
||||||
|
|
||||||
|
@ -221,7 +221,7 @@ key_bindings_init(void)
|
|||||||
"bind -n MouseDown1Pane select-pane -t=\\; send-keys -M",
|
"bind -n MouseDown1Pane select-pane -t=\\; send-keys -M",
|
||||||
"bind -n MouseDrag1Border resize-pane -M",
|
"bind -n MouseDrag1Border resize-pane -M",
|
||||||
"bind -n MouseDown1Status select-window -t=",
|
"bind -n MouseDown1Status select-window -t=",
|
||||||
"bind -n MouseDrag1Pane copy-mode -M",
|
"bind -n MouseDrag1Pane if -Ft= '#{mouse_any_flag}' 'if -Ft= \"#{pane_in_mode}\" \"copy-mode -M\" \"send-keys -M\"' 'copy-mode -M'",
|
||||||
};
|
};
|
||||||
u_int i;
|
u_int i;
|
||||||
struct cmd_list *cmdlist;
|
struct cmd_list *cmdlist;
|
||||||
|
Loading…
Reference in New Issue
Block a user