From 79f364632535ef85c190fcf1be9834bbffc19c95 Mon Sep 17 00:00:00 2001 From: Vince Date: Sun, 7 Jul 2024 12:40:23 +0100 Subject: [PATCH] Add missing clipboard shortcut to default-linux.json (#13900) Bind shift-delete to editor::Cut (similar to #11799, which added copy and paste, but not cut) Release Notes: - N/A --- assets/keymaps/default-linux.json | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/keymaps/default-linux.json b/assets/keymaps/default-linux.json index 3e9adb1db377d8b982aa054d2fc15ee6ec461a98..c5a92a4c9e38612514dd5a57eb8f5c95620cf3a8 100644 --- a/assets/keymaps/default-linux.json +++ b/assets/keymaps/default-linux.json @@ -44,6 +44,7 @@ "ctrl-t": "editor::Transpose", "ctrl-backspace": "editor::DeleteToPreviousWordStart", "ctrl-delete": "editor::DeleteToNextWordEnd", + "shift-delete": "editor::Cut", "ctrl-x": "editor::Cut", "ctrl-insert": "editor::Copy", "ctrl-c": "editor::Copy",