feat: Change to prepare for upcoming deprecation of configuring diagnostic-signs using sign_define() (#1232)

This commit is contained in:
gloomy-lemon-debatable 2024-11-20 22:37:22 +09:00 committed by GitHub
parent 2ba39c6973
commit e5dc5f6d1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -590,11 +590,12 @@ require('lazy').setup({
-- Change diagnostic symbols in the sign column (gutter)
-- if vim.g.have_nerd_font then
-- local signs = { Error = '', Warn = '', Hint = '', Info = '' }
-- local signs = { ERROR = '', WARN = '', INFO = '', HINT = '' }
-- local diagnostic_signs = {}
-- for type, icon in pairs(signs) do
-- local hl = 'DiagnosticSign' .. type
-- vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
-- diagnostic_signs[vim.diagnostic.severity[type]] = icon
-- end
-- vim.diagnostic.config { signs = { text = diagnostic_signs } }
-- end
-- LSP servers and clients are able to communicate to each other what features they support.