Resolve some todos

This commit is contained in:
Daniel Imms 2021-02-05 07:22:54 -08:00
parent bfa8e4e400
commit 631cc755d6
2 changed files with 0 additions and 4 deletions

View file

@ -1128,7 +1128,6 @@ export function registerTerminalActions() {
},
when: KEYBINDING_CONTEXT_TERMINAL_FOCUS
}],
// TODO: Support splitVertical icon?
icon: Codicon.splitHorizontal,
menu: [{
id: MenuId.ViewTitle,
@ -1294,7 +1293,6 @@ export function registerTerminalActions() {
}
});
MenuRegistry.appendMenuItem(MenuId.TerminalContext, {
// TODO: Disable when there is no selection
command: {
id: TERMINAL_COMMAND_ID.KILL,
title: localize('workbench.action.terminal.kill.short', "Kill Terminal")
@ -1416,7 +1414,6 @@ export function registerTerminalActions() {
}
});
MenuRegistry.appendMenuItem(MenuId.TerminalContext, {
// TODO: Disable when text is not in the clipboard
command: {
id: TERMINAL_COMMAND_ID.PASTE,
title: localize('workbench.action.terminal.paste.short', "Paste")

View file

@ -318,7 +318,6 @@ export class TerminalViewPane extends ViewPane {
this._contextMenuService.showContextMenu({
getAnchor: () => anchor,
// TODO: Bring back context menu
getActions: () => actions,
getActionsContext: () => this._parentDomElement,
onHide: () => actionsDisposable.dispose()