This repository was archived by the owner on Apr 14, 2022. It is now read-only.
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
Display argument documentation when hovering over it in a function call #1970
Open
Description
Environment data
- VS Code version: 1.44.0-insider
- Extension version (available under the Extensions sidebar): 2020.4.68586-dev
- OS and version: MacOS 10.15.3
- Python version (& distribution if applicable, e.g. Anaconda): 3.7.3
- Type of virtual environment used (N/A | venv | virtualenv | conda | ...): NA
- Relevant/affected Python packages and their versions: NA
- Relevant/affected Python-related VS Code extensions and their versions: NA
- Jedi or Language Server? (i.e. what is
"python.jediEnabled"
set to; more info How to update the language server to the latest stable version vscode-python#3977): Language server - Value of the
python.languageServer
setting: Microsoft
Steps to reproduce:
- For the python file:
({'x': 1}).pop('x', d=)
- Hover over
d
Expected behaviour
IntelliSense for this keyword argument is shown
Actual behaviour
No intellisense
Other example:
import argparse
argparse.ArgumentParser(description="") # hover over 'description'