diff options
| author | Nghia Le Minh <nghialm269@gmail.com> | 2022-10-09 14:01:36 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-09 09:01:36 +0200 |
| commit | f174a0367b4fc7cb17710d867e25ea792311c418 (patch) | |
| tree | eaed8549215dc5896d7f193259522d1d583a7b5a | |
| parent | 5fadc247c56e739d9c5c30a484fd291bb87bd378 (diff) | |
feat(diagnostics): change highlight groups to DiagnosticSign... (#2194)
| -rw-r--r-- | lua/telescope/make_entry.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/make_entry.lua b/lua/telescope/make_entry.lua index 06b469a..409da21 100644 --- a/lua/telescope/make_entry.lua +++ b/lua/telescope/make_entry.lua @@ -1132,7 +1132,7 @@ function make_entry.gen_from_diagnostics(opts) local pos = string.format("%4d:%2d", entry.lnum, entry.col) local line_info = { (signs and signs[entry.type] .. " " or "") .. pos, - "Diagnostic" .. entry.type, + "DiagnosticSign" .. entry.type, } return displayer { |
