Implement xterm extended mouse mode
This commit is contained in:
committed by
Keith Winstein
parent
5ef7f43479
commit
926bbcc746
@@ -191,6 +191,7 @@ namespace Terminal {
|
||||
bool reverse_video;
|
||||
bool bracketed_paste;
|
||||
bool xterm_mouse;
|
||||
bool xterm_extended_mouse;
|
||||
|
||||
bool application_mode_cursor_keys;
|
||||
|
||||
@@ -240,7 +241,8 @@ namespace Terminal {
|
||||
return ( width == x.width ) && ( height == x.height ) && ( cursor_col == x.cursor_col )
|
||||
&& ( cursor_row == x.cursor_row ) && ( cursor_visible == x.cursor_visible ) &&
|
||||
( reverse_video == x.reverse_video ) && ( renditions == x.renditions ) &&
|
||||
( bracketed_paste == x.bracketed_paste ) && ( xterm_mouse == x.xterm_mouse );
|
||||
( bracketed_paste == x.bracketed_paste ) && ( xterm_mouse == x.xterm_mouse ) &&
|
||||
( xterm_extended_mouse == x.xterm_extended_mouse );
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user