diff options
author | Gregory Anders <greg@gpanders.com> | 2025-01-14 08:18:59 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-14 08:18:59 -0600 |
commit | f1c45fc7a4a595e460cd245172a5767bddeb09e9 (patch) | |
tree | bf9dd2ffe6acea41c7639828fffef9a8393015fe /test/unit | |
parent | 7eabc8899af8b2fed1472165b74f43965282974f (diff) | |
download | rneovim-f1c45fc7a4a595e460cd245172a5767bddeb09e9.tar.gz rneovim-f1c45fc7a4a595e460cd245172a5767bddeb09e9.tar.bz2 rneovim-f1c45fc7a4a595e460cd245172a5767bddeb09e9.zip |
feat(terminal): support theme update notifications (DEC mode 2031) (#31999)
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/fixtures/vterm_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unit/fixtures/vterm_test.c b/test/unit/fixtures/vterm_test.c index 7522962a05..6744305960 100644 --- a/test/unit/fixtures/vterm_test.c +++ b/test/unit/fixtures/vterm_test.c @@ -345,6 +345,8 @@ static VTermValueType vterm_get_prop_type(VTermProp prop) return VTERM_VALUETYPE_INT; case VTERM_PROP_FOCUSREPORT: return VTERM_VALUETYPE_BOOL; + case VTERM_PROP_THEMEUPDATES: + return VTERM_VALUETYPE_BOOL; case VTERM_N_PROPS: return 0; |