diff --git a/clients/lsp-pylsp.el b/clients/lsp-pylsp.el index 67bb28256b..2406caad8f 100644 --- a/clients/lsp-pylsp.el +++ b/clients/lsp-pylsp.el @@ -234,6 +234,16 @@ Drastically increases startup time." :type 'boolean :group 'lsp-pylsp) +(defcustom lsp-pylsp-plugins-rope-autoimport-completions-enabled nil + "Enable or disable completions from rope-autoimport." + :type 'boolean + :group 'lsp-pylsp) + +(defcustom lsp-pylsp-plugins-rope-autoimport-code-actions-enabled nil + "Enable or disable code actions from rope-autoimport." + :type 'boolean + :group 'lsp-pylsp) + (defcustom lsp-pylsp-plugins-rope-completion-enabled nil "Enable or disable the plugin." :type 'boolean @@ -583,6 +593,8 @@ So it will rename only references it can find." ("pylsp.plugins.pyls_isort.enabled" lsp-pylsp-plugins-isort-enabled t) ("pylsp.plugins.rope_autoimport.enabled" lsp-pylsp-plugins-rope-autoimport-enabled t) ("pylsp.plugins.rope_autoimport.memory" lsp-pylsp-plugins-rope-autoimport-memory t) + ("pylsp.plugins.rope_autoimport.completions.enabled" lsp-pylsp-plugins-rope-autoimport-completions-enabled t) + ("pylsp.plugins.rope_autoimport.code_actions.enabled" lsp-pylsp-plugins-rope-autoimport-code-actions-enabled t) ("pylsp.plugins.rope_completion.enabled" lsp-pylsp-plugins-rope-completion-enabled t) ("pylsp.plugins.rope_completion.eager" lsp-pylsp-plugins-rope-completion-eager t) ("pylsp.plugins.pyflakes.enabled" lsp-pylsp-plugins-pyflakes-enabled t)