mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 21:52:59 +00:00
Merge pull request #161328 from microsoft/tyriar/fix_ctx_key
Allow escape sequence logging on web
This commit is contained in:
@@ -1309,7 +1309,7 @@ export function registerTerminalActions() {
|
||||
title: { value: localize('workbench.action.terminal.toggleEscapeSequenceLogging', "Toggle Escape Sequence Logging"), original: 'Toggle Escape Sequence Logging' },
|
||||
f1: true,
|
||||
category,
|
||||
precondition: TerminalContextKeys.processSupported
|
||||
precondition: ContextKeyExpr.or(TerminalContextKeys.processSupported, TerminalContextKeys.terminalHasBeenCreated)
|
||||
});
|
||||
}
|
||||
async run(accessor: ServicesAccessor) {
|
||||
|
||||
Reference in New Issue
Block a user