diff options
| author | Carte <7457451+seejaysea-dev@users.noreply.github.com> | 2025-06-21 05:26:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-21 02:26:23 -0700 |
| commit | 89cc7b6fccf03062db3a25ed880acde3e1e2f46a (patch) | |
| tree | f17fce2f4b28827d072519dbe25e616de1856b87 /lsp/powershell_es.lua | |
| parent | fix: some `on_attach` callbacks may act on the wrong buffer #3916 (diff) | |
| download | nvim-lspconfig-89cc7b6fccf03062db3a25ed880acde3e1e2f46a.tar nvim-lspconfig-89cc7b6fccf03062db3a25ed880acde3e1e2f46a.tar.gz nvim-lspconfig-89cc7b6fccf03062db3a25ed880acde3e1e2f46a.tar.bz2 nvim-lspconfig-89cc7b6fccf03062db3a25ed880acde3e1e2f46a.tar.lz nvim-lspconfig-89cc7b6fccf03062db3a25ed880acde3e1e2f46a.tar.xz nvim-lspconfig-89cc7b6fccf03062db3a25ed880acde3e1e2f46a.tar.zst nvim-lspconfig-89cc7b6fccf03062db3a25ed880acde3e1e2f46a.zip | |
fix(powershell_es): unknown LogLevel breaks LSP #3920
This reverts commit 314b35335cc84bc2a085c84c69da955ba22da163
Diffstat (limited to 'lsp/powershell_es.lua')
| -rw-r--r-- | lsp/powershell_es.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/powershell_es.lua b/lsp/powershell_es.lua index 8f683771..d734df29 100644 --- a/lsp/powershell_es.lua +++ b/lsp/powershell_es.lua @@ -44,7 +44,7 @@ return { local shell = vim.lsp.config.powershell_es.shell or 'pwsh' local command_fmt = - [[& '%s/PowerShellEditorServices/Start-EditorServices.ps1' -BundledModulesPath '%s' -LogPath '%s/powershell_es.log' -SessionDetailsPath '%s/powershell_es.session.json' -FeatureFlags @() -AdditionalModules @() -HostName nvim -HostProfileId 0 -HostVersion 1.0.0 -Stdio -LogLevel Information]] + [[& '%s/PowerShellEditorServices/Start-EditorServices.ps1' -BundledModulesPath '%s' -LogPath '%s/powershell_es.log' -SessionDetailsPath '%s/powershell_es.session.json' -FeatureFlags @() -AdditionalModules @() -HostName nvim -HostProfileId 0 -HostVersion 1.0.0 -Stdio -LogLevel Normal]] local command = command_fmt:format(bundle_path, bundle_path, temp_path, temp_path) local cmd = { shell, '-NoLogo', '-NoProfile', '-Command', command } |
