Added completion
This commit is contained in:
parent
fb0213d77a
commit
3819974a28
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user