diff --git a/src/cm/lsp/serverLauncher.ts b/src/cm/lsp/serverLauncher.ts index 7aaabef43..87f0a1852 100644 --- a/src/cm/lsp/serverLauncher.ts +++ b/src/cm/lsp/serverLauncher.ts @@ -849,7 +849,8 @@ export async function uninstallServer( message: `Uninstalling ${displayLabel}...`, loading: () => loading, }); - await runForegroundCommand(command); + //await runForegroundCommand(command); + await runQuickCommand(command); if (cacheKey) { checkedCommands.delete(cacheKey); } diff --git a/src/plugins/terminal/www/Terminal.js b/src/plugins/terminal/www/Terminal.js index c1a811c85..ea4431b9a 100644 --- a/src/plugins/terminal/www/Terminal.js +++ b/src/plugins/terminal/www/Terminal.js @@ -507,7 +507,7 @@ const Terminal = { echo "ok" `; - const result = await Executor.execute(cmd); + const result = await Executor.BackgroundExecutor.execute(cmd); if (result === "ok") { resolve(result); } else { @@ -553,7 +553,7 @@ const Terminal = { echo "ok" `; - const result = await Executor.execute(cmd); + const result = await Executor.BackgroundExecutor.execute(cmd); if (result === "ok") { resolve(result); } else {