Skip to content

Commit 5a78b37

Browse files
committed
Remove the Copy Edit Format Instructions command
1 parent 33a3e56 commit 5a78b37

5 files changed

Lines changed: 1 addition & 83 deletions

File tree

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,6 @@ CWC includes all the essential API tools. Bring Your Own Key (BYOK) for a model
189189

190190
- `Commit Changes` - Generate commit message and commit.
191191

192-
## Misc
193-
194-
- `Copy Edit Format Instructions` - Copy XML-formatted edit format instructions to the clipboard.
195-
196192
## Contributing
197193

198194
All contributions are welcome. Feel free to submit pull requests, feature requests and bug reports.

apps/editor/package.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,6 @@
310310
"title": "%codeWebChat.generateCommitMessageAndCommit.title%",
311311
"category": "Code Web Chat"
312312
},
313-
{
314-
"command": "codeWebChat.copyEditFormatInstructions",
315-
"title": "Copy Edit Format Instructions",
316-
"icon": "$(copy)",
317-
"category": "Code Web Chat"
318-
},
319313
{
320314
"command": "codeWebChat.setRanges",
321315
"title": "%codeWebChat.setRanges.title%",
@@ -518,9 +512,6 @@
518512
"command": "codeWebChat.copyCommitMessagePrompt",
519513
"when": "false"
520514
},
521-
{
522-
"command": "codeWebChat.copyEditFormatInstructions"
523-
},
524515
{
525516
"command": "codeWebChat.searchFilesForContextFromDirectory",
526517
"when": "false"

apps/editor/src/commands/copy-edit-format-instructions-command.ts

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

apps/editor/src/commands/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ export * from './check-referencing-files-for-context-command'
2222
export * from './check-definition-file-for-context-command'
2323
export * from './find-relevant-files-command'
2424
export * from './select-imported-files-command'
25-
export * from './copy-edit-format-instructions-command'

apps/editor/src/extension.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ import {
3535
search_files_for_context_commands,
3636
check_referencing_files_for_context_command,
3737
check_definition_file_for_context_command,
38-
find_relevant_files_command,
39-
copy_edit_format_instructions_command
38+
find_relevant_files_command
4039
} from './commands'
4140
import { setup_git_discard_file_watcher } from './services/git-discard-file-watcher'
4241
import { select_imported_files_command } from './commands/select-imported-files-command'
@@ -137,7 +136,6 @@ export const activate = async (context: vscode.ExtensionContext) => {
137136
duplicate_workspace_command(workspace_provider, context),
138137
check_referencing_files_for_context_command(workspace_provider),
139138
...search_files_for_context_commands(workspace_provider, context),
140-
copy_edit_format_instructions_command(),
141139
find_relevant_files_command(workspace_provider, context),
142140
check_definition_file_for_context_command(workspace_provider),
143141
open_url_command({

0 commit comments

Comments
 (0)