Skip to content

Commit f69ed84

Browse files
authored
Remove built-in rope_rename plugin (#515)
1 parent 245da20 commit f69ed84

File tree

4 files changed

+1
-141
lines changed

4 files changed

+1
-141
lines changed

pylsp/plugins/jedi_rename.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def pylsp_rename(config, workspace, document, position, new_name):
2020
except NotImplementedError as exc:
2121
raise Exception(
2222
"No support for renaming in Python 2/3.5 with Jedi. "
23-
"Consider using the rope_rename plugin instead"
23+
"Consider using the pylsp-rope plugin instead"
2424
) from exc
2525
log.debug("Finished rename: %s", refactoring.get_diff())
2626
changes = []

pylsp/plugins/rope_rename.py

-66
This file was deleted.

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ pydocstyle = "pylsp.plugins.pydocstyle_lint"
7979
pyflakes = "pylsp.plugins.pyflakes_lint"
8080
pylint = "pylsp.plugins.pylint_lint"
8181
rope_completion = "pylsp.plugins.rope_completion"
82-
rope_rename = "pylsp.plugins.rope_rename"
8382
rope_autoimport = "pylsp.plugins.rope_autoimport"
8483
yapf = "pylsp.plugins.yapf_format"
8584

test/plugins/test_rope_rename.py

-73
This file was deleted.

0 commit comments

Comments
 (0)