Added completion
This commit is contained in:
parent
3261aaacdb
commit
103063715f
@ -26,25 +26,49 @@ local function show_suggestion(suggestion, start_col)
|
|||||||
if suggestion == "" then return end
|
if suggestion == "" then return end
|
||||||
|
|
||||||
local line = vim.api.nvim_win_get_cursor(0)[1] - 1
|
local line = vim.api.nvim_win_get_cursor(0)[1] - 1
|
||||||
|
local line_text = vim.api.nvim_buf_get_lines(0, line, line + 1, true)[1]
|
||||||
|
|
||||||
|
-- Validate column position
|
||||||
|
if start_col > #line_text then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
current_suggestion.text = suggestion
|
current_suggestion.text = suggestion
|
||||||
current_suggestion.start_col = start_col
|
current_suggestion.start_col = start_col
|
||||||
|
|
||||||
-- Make the text virtual (doesn't affect actual buffer content)
|
-- Make the text virtual (doesn't affect actual buffer content)
|
||||||
vim.api.nvim_buf_set_extmark(0, current_suggestion.namespace_id, line, start_col, {
|
vim.api.nvim_buf_set_extmark(0, current_suggestion.namespace_id, line, start_col, {
|
||||||
virt_text = {{suggestion, 'GeminiSuggestion'}},
|
virt_text = {{suggestion, 'GeminiSuggestion'}},
|
||||||
virt_text_pos = 'overlay',
|
virt_text_pos = 'inline', -- Changed from 'overlay' to 'inline'
|
||||||
|
virt_text_hide = true, -- Hide when there's other virtual text
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Function to accept current suggestion
|
-- Function to accept current suggestion
|
||||||
function M.accept_suggestion()
|
function M.accept_suggestion()
|
||||||
if current_suggestion.text and current_suggestion.start_col then
|
if not (current_suggestion.text and current_suggestion.start_col) then
|
||||||
local line = vim.api.nvim_win_get_cursor(0)[1] - 1
|
return false
|
||||||
vim.api.nvim_buf_set_text(0, line, current_suggestion.start_col, line, current_suggestion.start_col, {current_suggestion.text})
|
|
||||||
clear_suggestion()
|
|
||||||
return true
|
|
||||||
end
|
end
|
||||||
return false
|
|
||||||
|
local line = vim.api.nvim_win_get_cursor(0)[1] - 1
|
||||||
|
local line_text = vim.api.nvim_buf_get_lines(0, line, line + 1, true)[1]
|
||||||
|
|
||||||
|
-- Validate column position
|
||||||
|
if current_suggestion.start_col > #line_text then
|
||||||
|
clear_suggestion()
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.api.nvim_buf_set_text(
|
||||||
|
0,
|
||||||
|
line,
|
||||||
|
current_suggestion.start_col,
|
||||||
|
line,
|
||||||
|
current_suggestion.start_col,
|
||||||
|
{current_suggestion.text}
|
||||||
|
)
|
||||||
|
clear_suggestion()
|
||||||
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.trigger_completion()
|
function M.trigger_completion()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user