mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
parent
1df8a34a7b
commit
f9b9b82047
@ -271,8 +271,12 @@ local function set_diagnostic_cache(diagnostics, bufnr, client_id)
|
|||||||
end
|
end
|
||||||
-- Account for servers that place diagnostics on terminating newline
|
-- Account for servers that place diagnostics on terminating newline
|
||||||
if buf_line_count > 0 then
|
if buf_line_count > 0 then
|
||||||
local start = diagnostic.range.start
|
diagnostic.range.start.line = math.min(
|
||||||
start.line = math.min(start.line, buf_line_count - 1)
|
diagnostic.range.start.line, buf_line_count - 1
|
||||||
|
)
|
||||||
|
diagnostic.range["end"].line = math.min(
|
||||||
|
diagnostic.range["end"].line, buf_line_count - 1
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user