aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2020-03-20 17:59:39 +0000
committernicm <nicm>2020-03-20 17:59:39 +0000
commit06c3079d66929e0c71575e877098fc533ae5f4a5 (patch)
tree4efb7382f9e45340b24e10b765b18f4f604a8508 /tmux.h
parent7bbca4939537bcb12d9488cbd0e88fb8bbb5dbc3 (diff)
downloadrtmux-06c3079d66929e0c71575e877098fc533ae5f4a5.tar.gz
rtmux-06c3079d66929e0c71575e877098fc533ae5f4a5.tar.bz2
rtmux-06c3079d66929e0c71575e877098fc533ae5f4a5.zip
Make the mouse_word and mouse_line formats work in copy mode and enable
the default pane menu in copy mode.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 53372cfe..f202315b 100644
--- a/tmux.h
+++ b/tmux.h
@@ -2636,6 +2636,8 @@ void printflike(2, 3) window_copy_add(struct window_pane *, const char *, ...);
void window_copy_vadd(struct window_pane *, const char *, va_list);
void window_copy_pageup(struct window_pane *, int);
void window_copy_start_drag(struct client *, struct mouse_event *);
+char *window_copy_get_word(struct window_pane *, u_int, u_int);
+char *window_copy_get_line(struct window_pane *, u_int);
/* names.c */
void check_window_name(struct window *);