mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Do not allow meta prefix on paste start and end sequences, GitHub issue 4387.
This commit is contained in:
3
tmux.h
3
tmux.h
@ -167,7 +167,8 @@ struct winlink;
|
||||
|
||||
/* Is this a paste key? */
|
||||
#define KEYC_IS_PASTE(key) \
|
||||
((key) == KEYC_PASTE_START || (key) == KEYC_PASTE_END)
|
||||
(((key) & KEYC_MASK_KEY) == KEYC_PASTE_START || \
|
||||
((key) & KEYC_MASK_KEY) == KEYC_PASTE_END)
|
||||
|
||||
/* Multiple click timeout. */
|
||||
#define KEYC_CLICK_TIMEOUT 300
|
||||
|
Reference in New Issue
Block a user