From 3c1989af2f178711055f75639ac5208c166cec68 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 6 Mar 2022 20:49:12 +0900 Subject: feat(ui): use correct hl group for diagnostics warning --- fnl/nvrc/ui/modules/diagnostics.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fnl/nvrc/ui') diff --git a/fnl/nvrc/ui/modules/diagnostics.fnl b/fnl/nvrc/ui/modules/diagnostics.fnl index a1e2530..9cf6a02 100644 --- a/fnl/nvrc/ui/modules/diagnostics.fnl +++ b/fnl/nvrc/ui/modules/diagnostics.fnl @@ -11,7 +11,7 @@ (set errors (.. "%#DiagnosticSignError#E" (. count :errors)))) (when (not= (. count :warnings) 0) (set warnings - (.. " %#DiagnosticSignWarning#W" (. count :warnings)))) + (.. " %#DiagnosticSignWarn#W" (. count :warnings)))) (when (not= (. count :hints) 0) (set hints (.. " %#DiagnosticSignHint#H" (. count :hints)))) (when (not= (. count :info) 0) -- cgit 1.4.1