Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'textDocument/completion' provider should check whether completion is enabled #3137

Closed
jllv opened this issue Mar 28, 2025 · 0 comments
Closed

Comments

@jllv
Copy link
Contributor

jllv commented Mar 28, 2025

m.register 'textDocument/completion' {
---@async
function (params)
local uri = files.getRealUri(params.textDocument.uri)
if not workspace.isReady(uri) then
return nil
end

Before checking whether the workspace is ready, I think as a first step the config value of 'Lua.completion.enable' should be checked.

Compare 'textDocument/hover' as a reference:

m.register 'textDocument/hover' {
capability = {
hoverProvider = true,
},
abortByFileUpdate = true,
---@async
function (params)
local doc = params.textDocument
local uri = files.getRealUri(doc.uri)
if not config.get(uri, 'Lua.hover.enable') then
return
end
if not workspace.isReady(uri) then

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant