do I look like I want to write a commit message for my nvim config?

This commit is contained in:
2025-09-02 10:58:12 -04:00
parent 33b35f16c1
commit 869859a2ce
6 changed files with 27 additions and 53 deletions

View File

@@ -94,6 +94,19 @@ auto("CompleteDonePre", {
return
end
-- TODO: we need to truncate the item.label to ensure that we don't
-- duplicate any text below is my attempt to start work on it:
--
-- local cursor = vim.api.nvim_win_get_cursor(0)
-- local line = vim.api.nvim_buf_get_lines(
-- vim.api.nvim_win_get_buf(0),
-- cursor[1] - 1,
-- cursor[1],
-- false
-- )[1]
-- item.label = string.gsub(item.label, string.sub(line, cursor[2] + 1), "")
-- item.insertText = item.label
-- if the item isn't a snippet then we might want to create a snippet
if item.label and item.kind and item.insertTextFormat then
if item.insertTextFormat ~= 2 and item.kind == 3 then