Skip to content

Commit f89cc5b

Browse files
committed
Remove the "Code Completion to Clipboard" feature
1 parent 05fd9a7 commit f89cc5b

5 files changed

Lines changed: 1 addition & 79 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ Generate meaningful commit messages precisely adhering to your preferred style.
8888
### Code completions
8989

9090
- `Code Web Chat: Code Completion` - Get code at cursor using API tool.
91-
- `Code Web Chat: Code Completion using...` - ...above with configuration selection.
92-
- `Code Web Chat: Code Completion to Clipboard` - Copy the code completion prompt to clipboard.
91+
- `Code Web Chat: Code Completion using...` - show list of configurations.
9392

9493
### Version Control
9594

packages/vscode/package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,6 @@
219219
"title": "Code Completion with Instructions",
220220
"category": "Code Web Chat"
221221
},
222-
{
223-
"command": "codeWebChat.codeCompletionToClipboard",
224-
"title": "Code Completion to Clipboard",
225-
"category": "Code Web Chat"
226-
},
227222
{
228223
"command": "codeWebChat.applyChatResponse",
229224
"title": "Apply Chat Response",

packages/vscode/src/commands/code-completion-to-clipboard-commands.ts

Lines changed: 0 additions & 66 deletions
This file was deleted.

packages/vscode/src/commands/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ export * from './apply-chat-response-command/apply-chat-response-command'
22
export * from './close-all-editors-command'
33
export * from './close-editor-command'
44
export * from './code-completion-commands'
5-
export * from './code-completion-to-clipboard-commands'
65
export * from './commit-changes-command'
76
export * from './delete-command'
87
export * from './generate-commit-message-command'

packages/vscode/src/extension.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import {
2828
revert_command,
2929
generate_commit_message_command,
3030
commit_changes_command,
31-
code_completion_to_clipboard_command,
3231
reference_in_chat_command,
3332
open_settings_command,
3433
open_url_command,
@@ -104,10 +103,6 @@ export async function activate(context: vscode.ExtensionContext) {
104103
open_editors_provider,
105104
context
106105
),
107-
code_completion_to_clipboard_command(
108-
workspace_provider,
109-
open_editors_provider
110-
),
111106
close_editor_command(),
112107
close_all_editors_command(),
113108
save_all_command(),

0 commit comments

Comments
 (0)