You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe. vim.ui.input is a newly merged lua function for taking user text input. It is used by default in vim.lsp.buf.rename(). The advantage is it is 'overridable' with a custom lua function.
Describe the solution you'd like
Change this line to use vim.ui.input. The API is not exactly the same, you must provide an on_confirm callback to receive the user input.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
vim.ui.input
is a newly merged lua function for taking user text input. It is used by default invim.lsp.buf.rename()
. The advantage is it is 'overridable' with a custom lua function.Describe the solution you'd like
Change this line to use
vim.ui.input
. The API is not exactly the same, you must provide anon_confirm
callback to receive the user input.The text was updated successfully, but these errors were encountered: