Added completion

This commit is contained in:
Jonas Widen 2025-03-16 21:38:04 +01:00
parent fb0213d77a
commit 3819974a28

View File

@ -21,6 +21,10 @@ end
local function show_suggestion(suggestion, start_col)
clear_suggestion()
-- Only use first line of suggestion
suggestion = suggestion:match("^[^\n]*")
if suggestion == "" then return end
local line = vim.api.nvim_win_get_cursor(0)[1] - 1
current_suggestion.text = suggestion
current_suggestion.start_col = start_col