sublimelsp / LSP-pyright

Python support for Sublime's LSP plugin provided through microsoft/pyright.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Disable auto-complete

dorianj opened this issue · comments

When I open a function call, the pyright opens a dialog with the function's signature. I want to disable this, and only open it on some keypress. Is that possible? I have "auto_complete": false, in my main Sublime preferences, which doesn't seem to apply here

You can do this in the server settings.

{
    "disabled_capabilities": {
        "completionProvider": true,
    },
}

This is about signature help, as far as I understand
And disabling capability won't allow toggling it on key binding.

It sounds like a feature request for the LSP package anyway.