mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
Add "Copy As..." core submenu to editor context and Edit titlebar menu (#118212)
* add "Copy As..." submenu fixes #118208 * bad editing * address feedback * menuBar/edit/copy menu
This commit is contained in:
@@ -53,6 +53,11 @@ const apiMenus: IAPIMenu[] = [
|
||||
id: MenuId.EditorContext,
|
||||
description: localize('menus.editorContext', "The editor context menu")
|
||||
},
|
||||
{
|
||||
key: 'editor/context/copy',
|
||||
id: MenuId.EditorContextCopy,
|
||||
description: localize('menus.editorContextCopyAs', "'Copy as' submenu in the editor context menu")
|
||||
},
|
||||
{
|
||||
key: 'explorer/context',
|
||||
id: MenuId.ExplorerContext,
|
||||
@@ -91,6 +96,11 @@ const apiMenus: IAPIMenu[] = [
|
||||
proposed: true,
|
||||
supportsSubmenus: false
|
||||
},
|
||||
{
|
||||
key: 'menuBar/edit/copy',
|
||||
id: MenuId.MenubarCopy,
|
||||
description: localize('menus.opy', "'Copy as' submenu in the top level Edit menu")
|
||||
},
|
||||
{
|
||||
key: 'scm/title',
|
||||
id: MenuId.SCMTitle,
|
||||
|
||||
Reference in New Issue
Block a user