Skip to content

Commit 1915e24

Browse files
committed
deploy: bf27f19
1 parent 7e18d05 commit 1915e24

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,7 @@ <h2 id="table-of-contents">Table of Contents<a class="headerlink" href="#table-o
361361
<h2 id="quickstart">Quickstart<a class="headerlink" href="#quickstart" title="Permanent link">#</a></h2>
362362
<div class="highlight"><pre><span></span><code><span class="p">(</span><span class="nb">use-package</span> <span class="nv">lsp-pyright</span>
363363
<span class="nb">:ensure</span> <span class="no">t</span>
364+
<span class="nb">:custom</span> <span class="p">(</span><span class="nv">lsp-pyright-langserver-command</span> <span class="s">&quot;pyright&quot;</span><span class="p">)</span> <span class="c1">;; or basedpyright</span>
364365
<span class="nb">:hook</span> <span class="p">(</span><span class="nv">python-mode</span> <span class="o">.</span> <span class="p">(</span><span class="nb">lambda</span> <span class="p">()</span>
365366
<span class="p">(</span><span class="nb">require</span> <span class="ss">&#39;lsp-pyright</span><span class="p">)</span>
366367
<span class="p">(</span><span class="nv">lsp</span><span class="p">))))</span> <span class="c1">; or lsp-deferred</span>
@@ -399,7 +400,7 @@ <h2 id="choosing-the-correct-version-of-python">Choosing the correct version of
399400
<small>
400401

401402
Last update:
402-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">September 29, 2024</span>
403+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">October 1, 2024</span>
403404

404405

405406
</small>

search/search_index.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"config":{"indexing":"full","lang":["en"],"min_search_length":3,"prebuild_index":false,"separator":"[\\s\\-]+"},"docs":[{"location":"","text":"lsp-pyright # Table of Contents # Quickstart Configuration Usage notes lsp-mode client leveraging pyright and basedpyright language server. Quickstart # ( use-package lsp-pyright :ensure t :hook ( python-mode . ( lambda () ( require 'lsp-pyright ) ( lsp )))) ; or lsp-deferred Configuration # lsp-pyright supports the following configuration. Each configuration is described in detail in Pyright Settings . pyright.disableLanguageServices via lsp-pyright-disable-language-services pyright.disableOrganizeImports via lsp-pyright-disable-organize-imports pyright.disableTaggedHints via lsp-pyright-disable-tagged-hints python.analysis.autoImportCompletions via lsp-pyright-auto-import-completions python.analysis.diagnosticMode via lsp-pyright-diagnostic-mode python.analysis.logLevel via lsp-pyright-log-level python.analysis.autoSearchPaths via lsp-pyright-auto-search-paths python.analysis.extraPaths via lsp-pyright-extra-paths python.pythonPath via lsp-pyright-locate-python python.venvPath via lsp-pyright-venv-path Projects can be further configured using pyrightconfig.json file. For further details please see Pyright Configuration . Choosing the correct version of Python # lsp-pyright will try its best to select the correct version of the python executable to use. It will do so by iteratively executing different search functions, going from most precise to most general. The list and order of the list can be modified by customizing lsp-pyright-python-search-functions . By default the order is: - Look for a parent directory with a virtual-environment named .venv or venv via lsp-pyright--locate-python-venv . - Look for a python executable on your PATH via lsp-pyright--locate-python-python .","title":"lsp-pyright"},{"location":"#lsp-pyright","text":"","title":"lsp-pyright"},{"location":"#table-of-contents","text":"Quickstart Configuration Usage notes lsp-mode client leveraging pyright and basedpyright language server.","title":"Table of Contents"},{"location":"#quickstart","text":"( use-package lsp-pyright :ensure t :hook ( python-mode . ( lambda () ( require 'lsp-pyright ) ( lsp )))) ; or lsp-deferred","title":"Quickstart"},{"location":"#configuration","text":"lsp-pyright supports the following configuration. Each configuration is described in detail in Pyright Settings . pyright.disableLanguageServices via lsp-pyright-disable-language-services pyright.disableOrganizeImports via lsp-pyright-disable-organize-imports pyright.disableTaggedHints via lsp-pyright-disable-tagged-hints python.analysis.autoImportCompletions via lsp-pyright-auto-import-completions python.analysis.diagnosticMode via lsp-pyright-diagnostic-mode python.analysis.logLevel via lsp-pyright-log-level python.analysis.autoSearchPaths via lsp-pyright-auto-search-paths python.analysis.extraPaths via lsp-pyright-extra-paths python.pythonPath via lsp-pyright-locate-python python.venvPath via lsp-pyright-venv-path Projects can be further configured using pyrightconfig.json file. For further details please see Pyright Configuration .","title":"Configuration"},{"location":"#choosing-the-correct-version-of-python","text":"lsp-pyright will try its best to select the correct version of the python executable to use. It will do so by iteratively executing different search functions, going from most precise to most general. The list and order of the list can be modified by customizing lsp-pyright-python-search-functions . By default the order is: - Look for a parent directory with a virtual-environment named .venv or venv via lsp-pyright--locate-python-venv . - Look for a python executable on your PATH via lsp-pyright--locate-python-python .","title":"Choosing the correct version of Python"}]}
1+
{"config":{"indexing":"full","lang":["en"],"min_search_length":3,"prebuild_index":false,"separator":"[\\s\\-]+"},"docs":[{"location":"","text":"lsp-pyright # Table of Contents # Quickstart Configuration Usage notes lsp-mode client leveraging pyright and basedpyright language server. Quickstart # ( use-package lsp-pyright :ensure t :custom ( lsp-pyright-langserver-command \"pyright\" ) ;; or basedpyright :hook ( python-mode . ( lambda () ( require 'lsp-pyright ) ( lsp )))) ; or lsp-deferred Configuration # lsp-pyright supports the following configuration. Each configuration is described in detail in Pyright Settings . pyright.disableLanguageServices via lsp-pyright-disable-language-services pyright.disableOrganizeImports via lsp-pyright-disable-organize-imports pyright.disableTaggedHints via lsp-pyright-disable-tagged-hints python.analysis.autoImportCompletions via lsp-pyright-auto-import-completions python.analysis.diagnosticMode via lsp-pyright-diagnostic-mode python.analysis.logLevel via lsp-pyright-log-level python.analysis.autoSearchPaths via lsp-pyright-auto-search-paths python.analysis.extraPaths via lsp-pyright-extra-paths python.pythonPath via lsp-pyright-locate-python python.venvPath via lsp-pyright-venv-path Projects can be further configured using pyrightconfig.json file. For further details please see Pyright Configuration . Choosing the correct version of Python # lsp-pyright will try its best to select the correct version of the python executable to use. It will do so by iteratively executing different search functions, going from most precise to most general. The list and order of the list can be modified by customizing lsp-pyright-python-search-functions . By default the order is: - Look for a parent directory with a virtual-environment named .venv or venv via lsp-pyright--locate-python-venv . - Look for a python executable on your PATH via lsp-pyright--locate-python-python .","title":"lsp-pyright"},{"location":"#lsp-pyright","text":"","title":"lsp-pyright"},{"location":"#table-of-contents","text":"Quickstart Configuration Usage notes lsp-mode client leveraging pyright and basedpyright language server.","title":"Table of Contents"},{"location":"#quickstart","text":"( use-package lsp-pyright :ensure t :custom ( lsp-pyright-langserver-command \"pyright\" ) ;; or basedpyright :hook ( python-mode . ( lambda () ( require 'lsp-pyright ) ( lsp )))) ; or lsp-deferred","title":"Quickstart"},{"location":"#configuration","text":"lsp-pyright supports the following configuration. Each configuration is described in detail in Pyright Settings . pyright.disableLanguageServices via lsp-pyright-disable-language-services pyright.disableOrganizeImports via lsp-pyright-disable-organize-imports pyright.disableTaggedHints via lsp-pyright-disable-tagged-hints python.analysis.autoImportCompletions via lsp-pyright-auto-import-completions python.analysis.diagnosticMode via lsp-pyright-diagnostic-mode python.analysis.logLevel via lsp-pyright-log-level python.analysis.autoSearchPaths via lsp-pyright-auto-search-paths python.analysis.extraPaths via lsp-pyright-extra-paths python.pythonPath via lsp-pyright-locate-python python.venvPath via lsp-pyright-venv-path Projects can be further configured using pyrightconfig.json file. For further details please see Pyright Configuration .","title":"Configuration"},{"location":"#choosing-the-correct-version-of-python","text":"lsp-pyright will try its best to select the correct version of the python executable to use. It will do so by iteratively executing different search functions, going from most precise to most general. The list and order of the list can be modified by customizing lsp-pyright-python-search-functions . By default the order is: - Look for a parent directory with a virtual-environment named .venv or venv via lsp-pyright--locate-python-venv . - Look for a python executable on your PATH via lsp-pyright--locate-python-python .","title":"Choosing the correct version of Python"}]}

sitemap.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>None</loc>
5-
<lastmod>2024-09-29</lastmod>
5+
<lastmod>2024-10-01</lastmod>
66
<changefreq>daily</changefreq>
77
</url>
88
</urlset>

sitemap.xml.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)