mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 21:56:57 +00:00
Add a way for lines added to copy mode to be passed through the parser to
handle escape sequences and use it for run-shell, GitHub issue 3156.
This commit is contained in:
5
tmux.h
5
tmux.h
@ -3085,8 +3085,9 @@ extern const struct window_mode window_client_mode;
|
||||
/* window-copy.c */
|
||||
extern const struct window_mode window_copy_mode;
|
||||
extern const struct window_mode window_view_mode;
|
||||
void printflike(2, 3) window_copy_add(struct window_pane *, const char *, ...);
|
||||
void printflike(2, 0) window_copy_vadd(struct window_pane *, const char *,
|
||||
void printflike(3, 4) window_copy_add(struct window_pane *, int, const char *,
|
||||
...);
|
||||
void printflike(3, 0) window_copy_vadd(struct window_pane *, int, const char *,
|
||||
va_list);
|
||||
void window_copy_pageup(struct window_pane *, int);
|
||||
void window_copy_start_drag(struct client *, struct mouse_event *);
|
||||
|
Reference in New Issue
Block a user