diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-01-18 13:59:40 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-01-18 14:56:55 +0100 |
commit | 6bfbb4db1d3708ce4ea69d29f3afe73def5a9f2a (patch) | |
tree | 9df924bab7c1a37d65b364597ea7544a8e9e434b /src/nvim/ui_client.h | |
parent | 847a1507aaf0877cda253ee4fdcb036fcd67816b (diff) | |
download | rneovim-6bfbb4db1d3708ce4ea69d29f3afe73def5a9f2a.tar.gz rneovim-6bfbb4db1d3708ce4ea69d29f3afe73def5a9f2a.tar.bz2 rneovim-6bfbb4db1d3708ce4ea69d29f3afe73def5a9f2a.zip |
fix(unittests): fix TUI broken test previously ignored
Diffstat (limited to 'src/nvim/ui_client.h')
-rw-r--r-- | src/nvim/ui_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui_client.h b/src/nvim/ui_client.h index 201c97f9d3..7e5f847039 100644 --- a/src/nvim/ui_client.h +++ b/src/nvim/ui_client.h @@ -31,7 +31,7 @@ EXTERN bool ui_client_attached INIT(= false); /// Whether ui client has gotten a response about the bg color of the terminal, /// kTrue=dark, kFalse=light, kNone=no response yet -EXTERN TriState ui_client_bg_respose INIT(= kNone); +EXTERN TriState ui_client_bg_response INIT(= kNone); /// The ui client should forward its stdin to the nvim process /// by convention, this uses fd=3 (next free number after stdio) |