mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-21 05:33:45 -04:00
term: add private mode flag ‘’reverse-wrap’
This commit is contained in:
parent
5594746e49
commit
060be30803
2 changed files with 7 additions and 0 deletions
|
|
@ -237,6 +237,7 @@ struct terminal {
|
|||
enum keypad_keys keypad_keys_mode;
|
||||
bool reverse;
|
||||
bool hide_cursor;
|
||||
bool reverse_wrap;
|
||||
bool auto_margin;
|
||||
bool insert_mode;
|
||||
bool bracketed_paste;
|
||||
|
|
@ -256,6 +257,7 @@ struct terminal {
|
|||
uint32_t application_cursor_keys:1;
|
||||
uint32_t reverse:1;
|
||||
uint32_t show_cursor:1;
|
||||
uint32_t reverse_wrap:1;
|
||||
uint32_t auto_margin:1;
|
||||
uint32_t cursor_blink:1;
|
||||
uint32_t insert_mode:1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue