Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-tui/src/backend/crossterm.rs')
| -rw-r--r-- | helix-tui/src/backend/crossterm.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-tui/src/backend/crossterm.rs b/helix-tui/src/backend/crossterm.rs index b80f2215..0a789085 100644 --- a/helix-tui/src/backend/crossterm.rs +++ b/helix-tui/src/backend/crossterm.rs @@ -330,6 +330,10 @@ where fn get_theme_mode(&self) -> Option<helix_view::theme::Mode> { None } + + fn set_background_color(&mut self, _color: Option<helix_view::theme::Color>) -> io::Result<()> { + Ok(()) + } } #[derive(Debug)] |