ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

LSP-pylsp

by sublimelsp ST3 Trending

Convenience package for the Python Language Server

Details

  • 2.19.0
    2.18.1
  • github.​com
  • github.​com
  • 6 days ago
  • 41 minutes ago
  • 3 years ago

Installs

  • Total 15K
  • Win 7K
  • Mac 3K
  • Linux 5K
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11
Windows 0 8 8 7 5 5 10 3 13 8 11 0 9 4 9 10 9 7 6 2 5 6 10 8 10 3 4 7 4 8 10 5 4 5 5 3 7 8 5 8 5 5 3 10 7 4
Mac 4 5 3 4 1 1 8 3 1 5 2 3 5 4 1 3 4 2 2 6 3 5 1 1 2 2 5 1 2 2 3 6 5 1 4 5 5 7 2 3 2 2 3 6 4 8
Linux 3 12 17 9 6 5 7 6 6 2 10 6 2 6 8 3 12 4 4 8 5 5 13 3 1 3 6 10 1 6 1 5 5 6 5 6 6 2 9 4 9 7 6 9 6 17

Readme

Source
raw.​githubusercontent.​com

LSP-pylsp

This is a helper package that automatically installs and updates the Python LSP Server (pylsp) for you.

To use this package, you must have:

  • An executable python (on Windows) or python3 (on Linux/macOS)
  • The LSP package
  • For Ubuntu and Debian users, you must also install python3-venv with apt
  • It's recommended to also install the LSP-json package which will provide auto-completion and validation for this package's settings.

Applicable Selectors

This language server operates on views with the source.python base scope.

Installation Location

The server is installed in the $CACHE/Package Storage/LSP-pylsp directory, where $CACHE is the base data path of Sublime Text. For instance, $CACHE is ~/.cache/sublime-text on a Linux system. If you want to force a re-installation of the server, you can delete the entire $CACHE/Package Storage/LSP-pylsp directory or just reinstall the package. The installation is done through a virtual environment, using pip. Therefore, you must have at least the python executable installed and it must be present in your $PATH.

Like any helper package, installation starts when you open a view that is suitable for this language server. In this case, that means that when you open a view with the source.python base scope, installation commences.

Running alongside LSP-pyright

LSP-pyright is a more modern, faster and actively supported alternative to LSP-pylsp. While it's arguably much better solution for validating the code and type-checking, it doesn't support linters or code formatters like flake8, pyflakes, pydocstyle, yapf or black. The solution to that could be to run them alongside each other with code-checking features disabled in LSP-pylsp. To achieve that, open Preferences: LSP-pylsp Settings from the Command Palette and add the following user settings:

{
    "disabled_capabilities": {
        "completionProvider": true,
        "definitionProvider": true,
        "documentHighlightProvider": true,
        "documentSymbolProvider": true,
        "hoverProvider": true,
        "referencesProvider": true,
        "renameProvider": true,
        "signatureHelpProvider": true,
    },
    "settings": {
        "pylsp.plugins.jedi_completion.enabled": false,
        "pylsp.plugins.jedi_definition.enabled": false,
        "pylsp.plugins.jedi_hover.enabled": false,
        "pylsp.plugins.jedi_references.enabled": false,
        "pylsp.plugins.jedi_signature_help.enabled": false,
        "pylsp.plugins.jedi_symbols.enabled": false,
    },
}

Configuration

Configure the Python LSP Server by accessing Preferences > Package Settings > LSP > Servers > LSP-pylsp.

Python Binary

The underlying pylsp server will be installed inside a virtual environment created using a system-default Python interpreter (by default python on Windows and python3 on other platforms). If you want to, for example, develop code that requires a newer version of Python than the one installed by default, you can override the path to the Python interpreter (binary) by changing the python_binary setting. For example:

Error: language “jsonc” is not supported
// Settings in here override those in "LSP-pylsp/LSP-pylsp.sublime-settings"
{
    "python_binary": "/opt/homebrew/bin/python3",
}

Virtual environments

If your project needs to run and be validated within a virtual environment, point to the environment using the pylsp.plugins.jedi.environment setting. For example, if your virtual environment lives in .venv/myproject within the project directory then run Project: Edit Project from the Command Palette and add the setting like so:

Error: language “jsonc” is not supported
{
    // "folders": [
    //     ...
    // ]
    "settings":
    {
        "LSP":
        {
            "LSP-pylsp":
            {
                "settings":
                {
                    "pylsp.plugins.jedi.environment": "./.venv/myproject"
                }
            }
        }
    }
}

You can also set it in the LSP-pylsp global settings but it's more likely that you'd want this to be overridden per-project.

Code Completion

This language server provides code completion through JEDI.

Signature Help

This language server provides signature help through JEDI.

Goto

This language server provides “goto definition” through JEDI.

Find References

This language server provides “find references” through JEDI.

Rename

This language server provides “rename word/symbol” through JEDI.

Linters

The default linter is pycodestyle. The possible linters are:

  • pycodestyle ("pylsp.plugins.pycodestyle.enabled" in the settings)
  • pydocstyle ("pylsp.plugins.pydocstyle.enabled" in the settings)
  • flake8 ("pylsp.plugins.flake8.enabled" in the settings) For flake8 to work, you must also modify "pylsp.configurationSources" to be ["flake8"] instead of the default ["pycodestyle"].
  • pyflakes ("pylsp.plugins.pyflakes.enabled" in the settings)
  • pylint ("pylsp.plugins.pylint.enabled" in the settings)
  • pylsp_mypy ("pylsp.plugins.pylsp_mypy.enabled" in the settings)
  • ruff ("pylsp.plugins.ruff.enabled" in the settings)

After changing a linter, you must restart Sublime Text.

Formatters

The default formatter is autopep8. The possible formatters are:

  • yapf ("pylsp.plugins.yapf.enabled" in the settings)
  • autopep8 ("pylsp.plugins.autopep8.enabled" in the settings)
  • black ("pylsp.plugins.pylsp_black.enabled" in the settings. When enabling also make sure that autopep8 and yapf are disabled.)

Sorting import statements

To sort your import statements, you can enable isort. The relevant setting is "pylsp.plugins.pyls_isort.enabled" in the settings. Sorting is done through the “LSP: Format Document” option in the Context Menu by right-clicking within the view with your mouse.

Sublime Text Plugin Development

By default, the environment of pylsp is adjusted so that the PYTHONPATH includes the directory where sublime.py and sublime_plugin.py live, as well as the $DATA/Packages directory. This enables accurate code completion for these files.