aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/pyright.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-80/+0
| | | | | | | | | | | | | | Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.
* refactor: move all old get_clients to new compatible (#3159)glepnir2024-05-171-2/+2
|
* fix(pyright): fix PyrightSetPythonPath command (#3032)neolooong2024-02-271-1/+5
|
* fix(pyright): only send commands to pyrightMenno2023-12-211-1/+8
|
* fix(pyright): change diagnosticMode to openFilesOnly #2783Phúc H. Lê Khắc2023-09-111-1/+1
| | | | When you go to definition of a library function, pyright will analyze the entire packages to report diagnostic information. This is extremely slow and heavy https://www.reddit.com/r/neovim/comments/135fqp9/why_is_pyright_constantly_analyzing_files_it/ Switch to the default value, similar to in VSCode.
* fix(pyright): re-enable single-file mode (#2730)Anthony Shi2023-07-211-1/+1
| | | | | | | * fix(pyright): re-enable single-file mode * fix(pyright): re-enable single-file mode * fix(pyright): re-enable single-file mode
* fix(pyright): fix root_dir detection (#2727)Serhii Tereshchenko2023-07-201-2/+2
|
* fix(pyright): add `.git` to list of root file (#2722)Phúc H. Lê Khắc2023-07-171-0/+1
|
* fix(pyright): use `cwd()` if no python config files are present. (#2697)Dom2023-07-131-1/+3
| | | This behavior is more natural and the default in VS Code: https://github.com/microsoft/pyright/issues/5407#issuecomment-1619132310.
* fix: use exepath on server command (#2595)Raphael2023-05-091-8/+1
|
* Revert "fix(pyright): remove`useLibraryCodeForTypes` config (#2522)" (#2529)Raphael2023-03-271-0/+1
| | | This reverts commit cb1f426f99d91df2d1c29d1f72827747cd6e7e96.
* fix(pyright): remove`useLibraryCodeForTypes` config (#2522)Fau8182023-03-261-1/+0
| | | | | | | | | | * fix(pyright): set `useLibraryCodeForTypes` to false See [pyright/docs/settings.md](https://github.com/microsoft/pyright/blob/main/docs/settings.md) * refactor(pyright): remove `useLibraryCodeForTypes` Make sure the default value is used. See [pyright/docs/settings.md](https://github.com/microsoft/pyright/blob/main/docs/settings.md)
* feat: add PyrightSetPythonPath command to pyright config (#2519)Ian Liu Rodrigues2023-03-231-0/+17
| | | | | | | | | | | | | | | | | * feat: add PyrightSetPythonPath command to pyright config The new command accepts a single path for a python executable that will be used to reconfigure the pyright language server. This is useful to change which python will be used by pyright without having to activate the python environment beforehand. The act of finding which python executable to use isn't handled here. * docs: update server_configurations.md skip-checks: true --------- Co-authored-by: Ian Liu Rodrigues <il@moray.ai> Co-authored-by: github-actions <github-actions@github.com>
* chore: remove all package.json (#1656)Michael Lingelbach2022-02-251-1/+0
|
* fix(npm): resolve the command correctly on windowskylo2522021-12-081-2/+4
|
* chore: clean up importsMichael Lingelbach2021-11-251-1/+1
|
* feat: expose configsMichael Lingelbach2021-11-251-0/+55