diff options
Diffstat (limited to 'extension/src')
-rw-r--r-- | extension/src/activation/activate.ts | 11 | ||||
-rw-r--r-- | extension/src/bridge.ts | 2 | ||||
-rw-r--r-- | extension/src/commands.ts | 6 | ||||
-rw-r--r-- | extension/src/debugPanel.ts | 4 |
4 files changed, 1 insertions, 22 deletions
diff --git a/extension/src/activation/activate.ts b/extension/src/activation/activate.ts index 7a2fdfc3..d07719a8 100644 --- a/extension/src/activation/activate.ts +++ b/extension/src/activation/activate.ts @@ -61,17 +61,6 @@ export async function activateExtension(context: vscode.ExtensionContext) { startContinuePythonServer().then(() => { resolve(null); }); - - vscode.window - .showInformationMessage( - "Click here to view the server logs, or use the 'continue.viewLogs' VS Code command.", - "View Logs" - ) - .then((selection) => { - if (selection === "View Logs") { - vscode.commands.executeCommand("continue.viewLogs"); - } - }); }); console.log("Continue server started"); diff --git a/extension/src/bridge.ts b/extension/src/bridge.ts index 9c43ebc2..0d665826 100644 --- a/extension/src/bridge.ts +++ b/extension/src/bridge.ts @@ -7,7 +7,7 @@ export function getContinueServerUrl() { extensionContext && extensionContext.extensionMode === vscode.ExtensionMode.Development ) { - // return "http://localhost:8001"; + return "http://localhost:8001"; } return ( vscode.workspace.getConfiguration("continue").get<string>("serverUrl") || diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 351c055d..cf6892f2 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -23,14 +23,8 @@ export const setFocusedOnContinueInput = (value: boolean) => { // Copy everything over from extension.ts const commandsMap: { [command: string]: (...args: any) => any } = { - "continue.suggestionDown": suggestionDownCommand, - "continue.suggestionUp": suggestionUpCommand, - "continue.acceptSuggestion": acceptSuggestionCommand, - "continue.rejectSuggestion": rejectSuggestionCommand, "continue.acceptDiff": acceptDiffCommand, "continue.rejectDiff": rejectDiffCommand, - "continue.acceptAllSuggestions": acceptAllSuggestionsCommand, - "continue.rejectAllSuggestions": rejectAllSuggestionsCommand, "continue.quickFix": async (message: string, code: string, edit: boolean) => { ideProtocolClient.sendMainUserInput( `${ diff --git a/extension/src/debugPanel.ts b/extension/src/debugPanel.ts index d1fe565f..b687c3e4 100644 --- a/extension/src/debugPanel.ts +++ b/extension/src/debugPanel.ts @@ -243,10 +243,6 @@ export function setupDebugPanel( vscode.commands.executeCommand("continue.viewLogs"); break; } - case "blurContinueInput": { - setFocusedOnContinueInput(false); - break; - } case "focusEditor": { setFocusedOnContinueInput(false); vscode.commands.executeCommand( |