Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/editor/contrib/clipboard/browser/clipboard.ts')
-rw-r--r--src/vs/editor/contrib/clipboard/browser/clipboard.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vs/editor/contrib/clipboard/browser/clipboard.ts b/src/vs/editor/contrib/clipboard/browser/clipboard.ts
index 0cfb518a71f..e9a71900cf1 100644
--- a/src/vs/editor/contrib/clipboard/browser/clipboard.ts
+++ b/src/vs/editor/contrib/clipboard/browser/clipboard.ts
@@ -39,9 +39,7 @@ export const CutAction = supportsCut ? registerCommand(new MultiCommand({
kbOpts: (
// Do not bind cut keybindings in the browser,
// since browsers do that for us and it avoids security prompts
- // the exception to that logic is Safari which needs to go through
- // our clipboard service. More info why can be found in the clipboard service.
- platform.isNative || platform.isSafari ? {
+ platform.isNative ? {
primary: KeyMod.CtrlCmd | KeyCode.KeyX,
win: { primary: KeyMod.CtrlCmd | KeyCode.KeyX, secondary: [KeyMod.Shift | KeyCode.Delete] },
weight: KeybindingWeight.EditorContrib