We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74dab52 commit 262ca27Copy full SHA for 262ca27
lua/copilot-lsp/util.lua
@@ -177,7 +177,7 @@ function M.hl_text_to_virt_lines(text, lang)
177
table.insert(curr_virt_line, hl_chunk(chunk_text, cap.hl))
178
table.insert(virt_lines, curr_virt_line)
179
180
- for i in curr_row + 1, cap.end_row - 1 do
+ for i = curr_row + 1, cap.end_row - 1 do
181
local line_text = lines[i + 1]
182
table.insert(virt_lines, { hl_chunk(line_text, cap.hl) })
183
end
0 commit comments