mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 22:43:58 +00:00
Merge branch 'obsd-master'
This commit is contained in:
3
tmux.h
3
tmux.h
@ -176,7 +176,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