mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 01:49:55 -05:00
Include send output to chat in context menu (#240850)
This commit is contained in:
@@ -71,6 +71,11 @@
|
||||
"title": "%copyCellOutput.title%",
|
||||
"category": "Notebook"
|
||||
},
|
||||
{
|
||||
"command": "notebook.cellOutput.addToChat",
|
||||
"title": "%addCellOutputToChat.title%",
|
||||
"category": "Notebook"
|
||||
},
|
||||
{
|
||||
"command": "notebook.cellOutput.openInTextEditor",
|
||||
"title": "%openCellOutput.title%",
|
||||
@@ -130,12 +135,18 @@
|
||||
"webview/context": [
|
||||
{
|
||||
"command": "notebook.cellOutput.copy",
|
||||
"when": "webviewId == 'notebook.output' && webviewSection == 'image'"
|
||||
"when": "webviewId == 'notebook.output' && webviewSection == 'image'",
|
||||
"group": "context@1"
|
||||
},
|
||||
{
|
||||
"command": "notebook.cellOutput.copy",
|
||||
"when": "webviewId == 'notebook.output' && webviewSection == 'text'"
|
||||
},
|
||||
{
|
||||
"command": "notebook.cellOutput.addToChat",
|
||||
"when": "webviewId == 'notebook.output' && webviewSection == 'image'",
|
||||
"group": "context@2"
|
||||
},
|
||||
{
|
||||
"command": "notebook.cellOutput.openInTextEditor",
|
||||
"when": "webviewId == 'notebook.output' && webviewSection == 'text'"
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"openIpynbInNotebookEditor.title": "Open IPYNB File In Notebook Editor",
|
||||
"cleanInvalidImageAttachment.title": "Clean Invalid Image Attachment Reference",
|
||||
"copyCellOutput.title": "Copy Cell Output",
|
||||
"addCellOutputToChat.title": "Add Cell Output to Chat",
|
||||
"openCellOutput.title": "Open Cell Output in Text Editor",
|
||||
"markdownAttachmentRenderer.displayName": {
|
||||
"message": "Markdown-It ipynb Cell Attachment renderer",
|
||||
|
||||
Reference in New Issue
Block a user