docs: add pylsp-workspace-symbols to third-party plugins#700
Open
nuglifeleoji wants to merge 1 commit intopython-lsp:developfrom
Open
docs: add pylsp-workspace-symbols to third-party plugins#700nuglifeleoji wants to merge 1 commit intopython-lsp:developfrom
nuglifeleoji wants to merge 1 commit intopython-lsp:developfrom
Conversation
Add pylsp-workspace-symbols plugin that provides workspace/symbol support via Jedi, addressing a long-standing feature request (python-lsp#237, python-lsp#564, python-lsp#511). Resolves python-lsp#699
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add pylsp-workspace-symbols to the third-party plugins list.
This plugin provides support via Jedi, addressing a long-standing feature request (#237, #564, #511) while those issues are pending merge.
Features:
Install:
Collecting pylsp-workspace-symbols
Downloading pylsp_workspace_symbols-0.6.0-py3-none-any.whl.metadata (21 kB)
Collecting python-lsp-server>=1.7 (from pylsp-workspace-symbols)
Downloading python_lsp_server-1.14.0-py3-none-any.whl.metadata (10 kB)
Requirement already satisfied: jedi>=0.18 in /usr/local/lib/python3.11/dist-packages (from pylsp-workspace-symbols) (0.19.1)
Requirement already satisfied: parso<0.9.0,>=0.8.3 in /usr/local/lib/python3.11/dist-packages (from jedi>=0.18->pylsp-workspace-symbols) (0.8.4)
Collecting docstring-to-markdown (from python-lsp-server>=1.7->pylsp-workspace-symbols)
Downloading docstring_to_markdown-0.17-py3-none-any.whl.metadata (2.3 kB)
Requirement already satisfied: pluggy>=1.0.0 in /usr/local/lib/python3.11/dist-packages (from python-lsp-server>=1.7->pylsp-workspace-symbols) (1.6.0)
Collecting python-lsp-jsonrpc<2.0.0,>=1.1.0 (from python-lsp-server>=1.7->pylsp-workspace-symbols)
Downloading python_lsp_jsonrpc-1.1.2-py3-none-any.whl.metadata (1.5 kB)
Collecting ujson>=3.0.0 (from python-lsp-server>=1.7->pylsp-workspace-symbols)
Downloading ujson-5.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (9.6 kB)
Requirement already satisfied: black in /usr/local/lib/python3.11/dist-packages (from python-lsp-server>=1.7->pylsp-workspace-symbols) (25.12.0)
Requirement already satisfied: click>=8.0.0 in /usr/local/lib/python3.11/dist-packages (from black->python-lsp-server>=1.7->pylsp-workspace-symbols) (8.3.1)
Requirement already satisfied: mypy-extensions>=0.4.3 in /usr/local/lib/python3.11/dist-packages (from black->python-lsp-server>=1.7->pylsp-workspace-symbols) (1.1.0)
Requirement already satisfied: packaging>=22.0 in /usr/local/lib/python3.11/dist-packages (from black->python-lsp-server>=1.7->pylsp-workspace-symbols) (24.1)
Requirement already satisfied: pathspec>=0.9.0 in /usr/local/lib/python3.11/dist-packages (from black->python-lsp-server>=1.7->pylsp-workspace-symbols) (1.0.4)
Requirement already satisfied: platformdirs>=2 in /usr/local/lib/python3.11/dist-packages (from black->python-lsp-server>=1.7->pylsp-workspace-symbols) (4.3.6)
Requirement already satisfied: pytokens>=0.3.0 in /usr/local/lib/python3.11/dist-packages (from black->python-lsp-server>=1.7->pylsp-workspace-symbols) (0.4.1)
Requirement already satisfied: importlib-metadata>=3.6 in /usr/local/lib/python3.11/dist-packages (from docstring-to-markdown->python-lsp-server>=1.7->pylsp-workspace-symbols) (8.7.1)
Requirement already satisfied: typing_extensions>=4.6 in /usr/local/lib/python3.11/dist-packages (from docstring-to-markdown->python-lsp-server>=1.7->pylsp-workspace-symbols) (4.15.0)
Requirement already satisfied: zipp>=3.20 in /usr/local/lib/python3.11/dist-packages (from importlib-metadata>=3.6->docstring-to-markdown->python-lsp-server>=1.7->pylsp-workspace-symbols) (3.23.0)
Downloading pylsp_workspace_symbols-0.6.0-py3-none-any.whl (53 kB)
Downloading python_lsp_server-1.14.0-py3-none-any.whl (77 kB)
Downloading python_lsp_jsonrpc-1.1.2-py3-none-any.whl (8.8 kB)
Downloading ujson-5.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57 kB)
Downloading docstring_to_markdown-0.17-py3-none-any.whl (23 kB)
Installing collected packages: ujson, python-lsp-jsonrpc, docstring-to-markdown, python-lsp-server, pylsp-workspace-symbols
Successfully installed docstring-to-markdown-0.17 pylsp-workspace-symbols-0.6.0 python-lsp-jsonrpc-1.1.2 python-lsp-server-1.14.0 ujson-5.12.0
Fixes #699