Skip to content

Commit

Permalink
Revert "fix #114009"
Browse files Browse the repository at this point in the history
This reverts commit f916e9f.
  • Loading branch information
meganrogge authored Mar 5, 2021
1 parent f916e9f commit 6da4734
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/vs/workbench/contrib/terminal/browser/terminalInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ import { BrowserFeatures } from 'vs/base/browser/canIUse';
import { IPreferencesService } from 'vs/workbench/services/preferences/common/preferences';
import { IEnvironmentVariableInfo } from 'vs/workbench/contrib/terminal/common/environmentVariable';
import { IProcessDataEvent, IShellLaunchConfig, ITerminalDimensionsOverride, ITerminalLaunchError } from 'vs/platform/terminal/common/terminal';
import { isIPad } from 'vs/base/browser/browser';

// How long in milliseconds should an average frame take to render for a notification to appear
// which suggests the fallback DOM-based renderer
Expand Down Expand Up @@ -569,10 +568,6 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
this.hasHadInput = true;
}

if (isIPad && event.key === 'c' && standardKeyboardEvent.ctrlKey) {
this.sendText('\u0003', false);
}

// for keyboard events that resolve to commands described
// within commandsToSkipShell, either alert or skip processing by xterm.js
if (resolveResult && resolveResult.commandId && this._skipTerminalCommands.some(k => k === resolveResult.commandId) && !this._configHelper.config.sendKeybindingsToShell) {
Expand Down

0 comments on commit 6da4734

Please sign in to comment.