mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
Problem: :LspInfo has its own "inner platlform" of highlights, mappings etc. And it doesn't integrate with :checkhealth. Solution: - Move the lspinfo code to a healthcheck. - LspInfo features such as highlights, "floating window" presentation, etc., should be added to :checkhealth in Nvim core, if they are really needed. - Define a "q" mapping until Nvim stable has that in :checkhealth.
12 lines
172 B
Lua
12 lines
172 B
Lua
local win_float = {}
|
|
|
|
win_float.default_options = {}
|
|
|
|
function win_float.default_opts()
|
|
return {}
|
|
end
|
|
|
|
function win_float.percentage_range_window() end
|
|
|
|
return win_float
|