From faa03c4e850469a03f8eeb1d6131bb292affbf63 Mon Sep 17 00:00:00 2001 From: Stephen Broadley Date: Fri, 2 Aug 2024 20:38:24 +0100 Subject: [PATCH] updated style name for 'nullspace' to 'ui.nullspace' --- helix-term/src/ui/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 2d48c1fb6..f57d9f2eb 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -112,7 +112,7 @@ impl EditorView { .clip_bottom(1); let null_style = theme - .try_get("ui.null") + .try_get("ui.nullspace") .or_else(|| Some(theme.get("ui.linenr"))) .unwrap();