diff options
author | sefidel <contact@sefidel.net> | 2022-03-06 20:49:12 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-03-06 20:49:12 +0900 |
commit | 3c1989af2f178711055f75639ac5208c166cec68 (patch) | |
tree | fb5d9eb9cb7d1775f4e696216783e43fd98b6535 | |
parent | 8e2d5acb953e018ba159d2a70c6aa263c23c6856 (diff) | |
download | nvimrc-3c1989af2f178711055f75639ac5208c166cec68.tar.gz nvimrc-3c1989af2f178711055f75639ac5208c166cec68.zip |
feat(ui): use correct hl group for diagnostics warning
-rw-r--r-- | fnl/nvrc/ui/modules/diagnostics.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
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) |