Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/lspsaga/diagnostic/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function diag:get_diagnostic(opt)
if opt.cursor then
local res = {}
for _, v in pairs(entrys) do
if v.col <= col and (v.end_col and v.end_col > col or true) then
if v.col <= col and (not v.end_col or v.end_col > col) then
res[#res + 1] = v
end
end
Expand Down