summarylogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-03-10Fix the path to CHANGELOG.md fileigstroev
2020-10-11use CHANGELOG.md to determine the latest versionSainnhepark
2020-10-11modify the file in ${pkgdir} insteadSainnhepark
2020-10-09fix user defined variable namesSainnhepark
2020-10-09fix link locationSainnhepark
2020-10-09[Break Change]: remove the shell scriptSainnhepark
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-08support for passing parametersSainnhepark
2020-10-08Use pure shell script to get the latest versionSainnhepark
2020-10-08update pkgver automaticallySainnhepark
2020-10-08update to 2020.9.8Sainnhepark
2020-09-13update to 2020.9.4Sainnhepark
2020-09-05update to 2020.9.0Sainnhepark
2020-08-29update to 2020.8.3Sainnhepark
2020-08-23update to 2020.8.2Sainnhepark
2020-08-18update to 2020.8.1Sainnhepark
2020-08-08add post_remove()Sainnhepark
2020-08-07update to 2020.8.0Sainnhepark
2020-07-30update to 2020.7.4Sainnhepark
2020-07-27add script to sourceSainnhepark
2020-07-27add maintainerSainnhepark
2020-07-26use nodejsSainnhepark
2020-07-26initSainnhepark