pappasam / coc-jedi

coc.nvim wrapper for https://github.com/pappasam/jedi-language-server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The result of omitted jedi.executable.command is unexpected for README

kevinhwang91 opened this issue · comments

If jedi.executable.command is omitted, coc-jedi always download jedi-language-server in venv in *unix system.

Here is the source code about this issue.

function getJlsExecutableDefault(): JlsExecutable {
if (process.platform === 'win32') {
return {
command: JLS_NAME,
args: [],
}
}
const path_jls = createJlsVenvPosix()
return {
command: path_jls,
args: [],
}
}

I have no ability to create a PR because I have no idea about TS and I haven't developed any plugins about coc.

Updated the docs to reflect what's actually happening, resolved in 188a0f4