Skip to content

Commit

Permalink
Command : remove "Ask Cody to Explain" from command palette (#4860)
Browse files Browse the repository at this point in the history
  • Loading branch information
abeatrix authored Jul 12, 2024
1 parent 0e4260d commit 61d93d6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This is a log of all notable changes to Cody for VS Code. [Unreleased] changes a

### Fixed

- Command: The "Ask Cody to Explain" command for explaining terminal output has been removed from the command palette, as it is only callable from the terminal context menu. [pull/4860](https://github.com/sourcegraph/cody/pull/4860)

### Changed

## 1.26.2
Expand Down
7 changes: 6 additions & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@
"command": "cody.command.explain-output",
"title": "Ask Cody to Explain",
"category": "Cody Command",
"icon": "$(cody-logo)"
"icon": "$(cody-logo)",
"enablement": "cody.activated && terminalTabsSingularSelection"
},
{
"command": "cody.command.edit-code",
Expand Down Expand Up @@ -770,6 +771,10 @@
"command": "cody.chat.view.popOut",
"when": "false",
"_comment": "Hidden because it is only a wrapper around the workspace pop out command and would place any editor tab (not just Cody chat) in a new window."
},
{
"command": "cody.command.explain-output",
"when": "false"
}
],
"editor/context": [
Expand Down

0 comments on commit 61d93d6

Please sign in to comment.