Extended refactoring capabilities for Python LSP Server using Rope.
Project description
pylsp-rope
Extended refactoring capabilities for Python LSP Server using Rope.
This is a plugin for Python LSP Server, so you also need to have it installed.
python-lsp-server already has basic built-in support for using Rope, but it's currently limited to just renaming and completion. Installing this plugin adds more refactoring functionality to python-lsp-server.
Installation
To use this plugin, you need to install this plugin in the same virtualenv as python-lsp-server itself.
pip install pylsp-rope
Then run pylsp
as usual, the plugin will be auto-discovered by
python-lsp-server if you've installed it to the right environment. On Vim,
refer to Rope in Vim or
Neovim. For
other editors, refer to your IDE/text editor's documentation on how to setup a
language server.
Configuration
There is no configuration yet.
Features
This plugin adds the following features to python-lsp-server:
- extract method (codeAction)
- extract variable (codeAction)
- inline method/variable/parameter (codeAction)
- use function (codeAction)
- method to method object (codeAction)
- convert local variable to field (codeAction)
- organize imports (codeAction)
- introduce parameter (codeAction)
- generate variable/function/class from undefined variable (codeAction)
- more to come...
Refer to Rope documentation for more details on how these refactoring works.
Usage
Extract method
Variants:
- Extract method
- Extract global method
- Extract method including similar statements
- Extract global method including similar statements
When CodeAction is triggered and the cursor is on any block of code, extract that expression into a method. Optionally, similar statements can also be extracted.
Extract variable
Variants:
- Extract variable
- Extract global variable
- Extract variable including similar statements
- Extract global variable including similar statements
When CodeAction is triggered and the cursor is on a expression, extract that expression into a variable. Optionally, similar statements can also be extracted.
Inline
When CodeAction is triggered and the cursor is on a resolvable Python variable, replace all calls to that method with the method body.
Use function
When CodeAction is triggered and the cursor is on the function name of a def
statement, try to replace code whose AST matches the selected function with a
call to the function.
Method to method object
When CodeAction is triggered and the cursor is on the function name of a def
statement, create a callable class to replace that method. You may want to
inline the method afterwards to remove the indirection.
Convert local variable to field
When CodeAction is triggered wand the cursor is on a local variable inside a method, convert that local variable to an attribute.
Organize import
Trigger CodeAction anywhere in a Python file to organize imports.
Introduce parameter
When CodeAction is triggered and the cursor is selecting a Python variable or attribute, make that variable/attribute a parameter.
Generate code
Variants:
- Generate variable
- Generate function
- Generate class
- Generate module
- Generate package
When CodeAction is triggered and the cursor is on an undefined Python variable, generate an empty variable/function/class/module/package for that name.
Caveat
Support for working on unsaved document is currently experimental.
This plugin is in early development, so expect some bugs. Please report in Github issue tracker if you had any issues with the plugin.
Developing
See CONTRIBUTING.md.
Packaging status
Credits
This package was created with Cookiecutter from python-lsp/cookiecutter-pylsp-plugin project template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pylsp-rope-0.1.12.tar.gz
.
File metadata
- Download URL: pylsp-rope-0.1.12.tar.gz
- Upload date:
- Size: 17.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8dee0614d5c05925912eca2a60117605045c4053a7681aaf910da93affd65f23 |
|
MD5 | a9d4e33df7b48c75dd0232e89b5df76f |
|
BLAKE2b-256 | a4bf599145992cf7963380d7047585e8abf55885472521f3a8fb6969a312e22b |
File details
Details for the file pylsp_rope-0.1.12-py3-none-any.whl
.
File metadata
- Download URL: pylsp_rope-0.1.12-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e27a209d5b510a64eba924dd15a749bc359c61c64a17689b28182bdd6754539 |
|
MD5 | c41f94601c238df3c97195aa9c809606 |
|
BLAKE2b-256 | 620bd50f7223cd00788170e1579c3510bc30f685418816a566551e779525fd8d |