File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
198194All contributions are welcome. Feel free to submit pull requests, feature requests and bug reports.
Original file line number Diff line number Diff line change 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%" ,
518512 "command" : " codeWebChat.copyCommitMessagePrompt" ,
519513 "when" : " false"
520514 },
521- {
522- "command" : " codeWebChat.copyEditFormatInstructions"
523- },
524515 {
525516 "command" : " codeWebChat.searchFilesForContextFromDirectory" ,
526517 "when" : " false"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,4 +22,3 @@ export * from './check-referencing-files-for-context-command'
2222export * from './check-definition-file-for-context-command'
2323export * from './find-relevant-files-command'
2424export * from './select-imported-files-command'
25- export * from './copy-edit-format-instructions-command'
Original file line number Diff line number Diff 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'
4140import { setup_git_discard_file_watcher } from './services/git-discard-file-watcher'
4241import { 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 ( {
You can’t perform that action at this time.
0 commit comments