There was an error while loading. Please reload this page.
1 parent 8cc1e32 commit 31890f1Copy full SHA for 31890f1
1 file changed
lua/mcphub/native/neovim/files/edit_file/edit_ui.lua
@@ -252,6 +252,7 @@ function EditUI:_highlight_hunk_block(hunk_block)
252
if line_length < max_cols then
253
return line .. string.rep(" ", max_cols - line_length)
254
end
255
+ return line
256
257
258
-- Add deletion indicator for pure deletions
@@ -283,7 +284,6 @@ function EditUI:_highlight_hunk_block(hunk_block)
283
284
virt_lines_above = virt_lines_above,
285
priority = self.highlights.priority,
286
}
-
287
-- For pure deletions, store the extmark_id for navigation
288
if hunk_block.type == "deletion" then
289
hunk_block.extmark_id = vim.api.nvim_buf_set_extmark(
0 commit comments