From cfdfe93b61cdcf408aee01dd10d0e3b9446de778 Mon Sep 17 00:00:00 2001 From: Hugo Barrera Date: Mon, 15 Jun 2020 14:02:56 +0000 Subject: [PATCH] Fix typo in `python.jediPath` documentation I was trying to find _where_ this directory would be and why it was missing from my system, and looking at the code in `pythonFiles/completion.py` for further clues, I figured out this was a type and the directory name was wrong in the README. --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index f0f3036..f8b94b7 100644 --- a/Readme.md +++ b/Readme.md @@ -93,7 +93,7 @@ Except from `test`, `debug` and `datascience` features of [vscode-python](https: - `python.globalModuleInstallation`:Whether to install Python modules globally when not using an environment., default: `false` - `python.jediEnabled`:Enables Jedi as IntelliSense engine instead of Microsoft Python Analysis Engine., default: `true` - `python.jediMemoryLimit`:Memory limit for the Jedi completion engine in megabytes. Zero (default) means 1024 MB. -1 means unlimited (disable memory limit check), default: `0` -- `python.jediPath`:Path to directory containing the Jedi library (this path will contain the 'Jedi' sub directory)., default: `""` +- `python.jediPath`:Path to directory containing the Jedi library (this path will contain the `jedi` sub directory)., default: `""` - `python.analysis.diagnosticEnabled`: Enable diagnostic support of language server, default: `true` - `python.analysis.openFilesOnly`:Only show errors and warnings for open files rather than for the entire workspace., default: `true` - `python.analysis.diagnosticPublishDelay`:Delay before diagnostic messages are transferred to the problems list (in milliseconds)., default: `1000`