Skip to content

Commit

Permalink
Remove built-in rope_rename plugin (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
doolio committed Mar 29, 2024
1 parent 245da20 commit f69ed84
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 141 deletions.
2 changes: 1 addition & 1 deletion pylsp/plugins/jedi_rename.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def pylsp_rename(config, workspace, document, position, new_name):
except NotImplementedError as exc:
raise Exception(
"No support for renaming in Python 2/3.5 with Jedi. "
"Consider using the rope_rename plugin instead"
"Consider using the pylsp-rope plugin instead"
) from exc
log.debug("Finished rename: %s", refactoring.get_diff())
changes = []
Expand Down
66 changes: 0 additions & 66 deletions pylsp/plugins/rope_rename.py

This file was deleted.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ pydocstyle = "pylsp.plugins.pydocstyle_lint"
pyflakes = "pylsp.plugins.pyflakes_lint"
pylint = "pylsp.plugins.pylint_lint"
rope_completion = "pylsp.plugins.rope_completion"
rope_rename = "pylsp.plugins.rope_rename"
rope_autoimport = "pylsp.plugins.rope_autoimport"
yapf = "pylsp.plugins.yapf_format"

Expand Down
73 changes: 0 additions & 73 deletions test/plugins/test_rope_rename.py

This file was deleted.

0 comments on commit f69ed84

Please sign in to comment.