Skip to content

Commit

Permalink
deploy: bf27f19
Browse files Browse the repository at this point in the history
  • Loading branch information
seagle0128 committed Oct 1, 2024
1 parent 7e18d05 commit 1915e24
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ <h2 id="table-of-contents">Table of Contents<a class="headerlink" href="#table-o
<h2 id="quickstart">Quickstart<a class="headerlink" href="#quickstart" title="Permanent link">#</a></h2>
<div class="highlight"><pre><span></span><code><span class="p">(</span><span class="nb">use-package</span> <span class="nv">lsp-pyright</span>
<span class="nb">:ensure</span> <span class="no">t</span>
<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>
<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>
<span class="p">(</span><span class="nb">require</span> <span class="ss">&#39;lsp-pyright</span><span class="p">)</span>
<span class="p">(</span><span class="nv">lsp</span><span class="p">))))</span> <span class="c1">; or lsp-deferred</span>
Expand Down Expand Up @@ -399,7 +400,7 @@ <h2 id="choosing-the-correct-version-of-python">Choosing the correct version of
<small>

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


</small>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json
Original file line number Diff line number Diff line change
@@ -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"}]}
{"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"}]}
2 changes: 1 addition & 1 deletion sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>None</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-10-01</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit 1915e24

Please sign in to comment.