clktmr / vim-gdscript3

Syntax highlighting and completion for GDScript 3
MIT License
13 stars 3 forks source link

Adds coc.nvim autocompletion support #2

Closed rafaeldelboni closed 5 years ago

rafaeldelboni commented 5 years ago

Closes #1

@clktmr do you know what is the findstart argument on GDScriptComplete is about?

clktmr commented 5 years ago

@clktmr do you know what is the findstart argument on GDScriptComplete is about?

If findstart is 1 GDScriptComplete will return the column where the completion starts instead of completion items. This is regular vim stuff, take a look at :h complete-functions for more information.

rafaeldelboni commented 5 years ago

So I this means we good right? Since the callback function is receiving the list with the completion.

clktmr commented 5 years ago

LGTM, thanks!