mirror of
https://github.com/tmux/tmux.git
synced 2024-11-17 18:08:51 +00:00
Fix a couple of mouse mode flag names.
This commit is contained in:
parent
7e79108f8a
commit
347cd0b5f8
4
screen.c
4
screen.c
@ -700,9 +700,9 @@ screen_mode_to_string(int mode)
|
||||
if (mode & MODE_CURSOR_VERY_VISIBLE)
|
||||
strlcat(tmp, "CURSOR_VERY_VISIBLE,", sizeof tmp);
|
||||
if (mode & MODE_MOUSE_UTF8)
|
||||
strlcat(tmp, "UTF8,", sizeof tmp);
|
||||
strlcat(tmp, "MOUSE_UTF8,", sizeof tmp);
|
||||
if (mode & MODE_MOUSE_SGR)
|
||||
strlcat(tmp, "SGR,", sizeof tmp);
|
||||
strlcat(tmp, "MOUSE_SGR,", sizeof tmp);
|
||||
if (mode & MODE_BRACKETPASTE)
|
||||
strlcat(tmp, "BRACKETPASTE,", sizeof tmp);
|
||||
if (mode & MODE_FOCUSON)
|
||||
|
Loading…
Reference in New Issue
Block a user