diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-04 12:08:10 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-04 12:08:10 -0700 |
commit | a2b140d314d0687be51e4108b35e492217561dbc (patch) | |
tree | 34a5ba45b5b996de01b7d3298728f00319001410 /extension/src/commands.ts | |
parent | 6f8be6366269cee61d0000f7332366a0276e562d (diff) | |
download | sncontinue-a2b140d314d0687be51e4108b35e492217561dbc.tar.gz sncontinue-a2b140d314d0687be51e4108b35e492217561dbc.tar.bz2 sncontinue-a2b140d314d0687be51e4108b35e492217561dbc.zip |
refactor: :fire: remove unused vscode commands
Diffstat (limited to 'extension/src/commands.ts')
-rw-r--r-- | extension/src/commands.ts | 6 |
1 files changed, 0 insertions, 6 deletions
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( `${ |