Skip to content

Commit

Permalink
Merge pull request #161328 from microsoft/tyriar/fix_ctx_key
Browse files Browse the repository at this point in the history
Allow escape sequence logging on web
  • Loading branch information
Tyriar committed Sep 21, 2022
2 parents 0b1bb13 + 9c652d7 commit ac12a2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit ac12a2e

Please sign in to comment.