nvim-lua / completion-nvim

A async completion framework aims to provide completion to neovim's built in LSP written in Lua
Apache License 2.0
973 stars 78 forks source link

Fix focusable_preview deprecation warnings #371

Closed fnknda closed 3 years ago

fnknda commented 3 years ago

Changed the function call from the now deprecated focusable_preview to the new open_floating_preview

Since this neovim's commit (https://github.com/neovim/neovim/commit/64da499ac25bd833c57e0850e31affd22294049e), focusable_preview is now deprecated in favour of the new open_floating_preview.

fnknda commented 3 years ago

This is the mentioned deprecation warning:

image

joshbode commented 3 years ago

thank you! I've tried this (NVIM v0.5.0-dev+1362-g3cd688ff7) and it works perfectly for me

vigoux commented 3 years ago

Great, sorry for the delay and thanks for handling this !