Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-10 | Fix the path to CHANGELOG.md file | igstroev | |
2020-10-11 | use CHANGELOG.md to determine the latest version | Sainnhepark | |
2020-10-11 | modify the file in ${pkgdir} instead | Sainnhepark | |
2020-10-09 | fix user defined variable names | Sainnhepark | |
2020-10-09 | fix link location | Sainnhepark | |
2020-10-09 | [Break Change]: remove the shell script | Sainnhepark | |
The earlier version uses a shell script to start the language server, but this will create a new process which makes your process tree looks somewhat dirty. This commit removes the shell script, using `server.bundle.js` to start the language server instead. After this update, you'll need to modify your configuration of this language server. Take coc.nvim for example, you'll need to add a new field `"args"` in your `coc-settings.json`: diff --git a/pylance-language-server.install b/pylance-language-server.install index b1a7fbc..d0199eb 100644 --- a/pylance-language-server.install +++ b/pylance-language-server.install @@ -10,6 +10,7 @@ post_install() { "enable": true, "filetypes": ["python"], "command": "pylance-language-server", + "args": ["--stdio"], "initializationOptions": {}, "settings": { "python.analysis.typeCheckingMode": "basic", | |||
2020-10-08 | support for passing parameters | Sainnhepark | |
2020-10-08 | Use pure shell script to get the latest version | Sainnhepark | |
2020-10-08 | update pkgver automatically | Sainnhepark | |
2020-10-08 | update to 2020.9.8 | Sainnhepark | |
2020-09-13 | update to 2020.9.4 | Sainnhepark | |
2020-09-05 | update to 2020.9.0 | Sainnhepark | |
2020-08-29 | update to 2020.8.3 | Sainnhepark | |
2020-08-23 | update to 2020.8.2 | Sainnhepark | |
2020-08-18 | update to 2020.8.1 | Sainnhepark | |
2020-08-08 | add post_remove() | Sainnhepark | |
2020-08-07 | update to 2020.8.0 | Sainnhepark | |
2020-07-30 | update to 2020.7.4 | Sainnhepark | |
2020-07-27 | add script to source | Sainnhepark | |
2020-07-27 | add maintainer | Sainnhepark | |
2020-07-26 | use nodejs | Sainnhepark | |
2020-07-26 | init | Sainnhepark | |