From 4c0e3485882e67e27cb00b308911f658d388ad8a Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Mon, 2 Feb 2026 16:08:43 +0100 Subject: [PATCH] keymaps: Fix accept edit predictions key binding collisions (#48184) Release Notes: - Fixed accepting next word and next line edit prediction keybindings colliding cursor movement keybinds --- assets/keymaps/default-linux.json | 8 ++++---- assets/keymaps/default-windows.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/assets/keymaps/default-linux.json b/assets/keymaps/default-linux.json index 1ba2968558d912cafbfc0f300fa0357f420c0f74..2becf8daee3e4930590afc68b0f318786722bdfa 100644 --- a/assets/keymaps/default-linux.json +++ b/assets/keymaps/default-linux.json @@ -737,8 +737,8 @@ "alt-tab": "editor::AcceptEditPrediction", "alt-l": "editor::AcceptEditPrediction", "tab": "editor::AcceptEditPrediction", - "ctrl-shift-right": "editor::AcceptNextWordEditPrediction", - "ctrl-shift-down": "editor::AcceptNextLineEditPrediction", + "alt-k": "editor::AcceptNextWordEditPrediction", + "alt-j": "editor::AcceptNextLineEditPrediction", }, }, { @@ -746,8 +746,8 @@ "bindings": { "alt-tab": "editor::AcceptEditPrediction", "alt-l": "editor::AcceptEditPrediction", - "ctrl-shift-right": "editor::AcceptNextWordEditPrediction", - "ctrl-shift-down": "editor::AcceptNextLineEditPrediction", + "alt-k": "editor::AcceptNextWordEditPrediction", + "alt-j": "editor::AcceptNextLineEditPrediction", }, }, { diff --git a/assets/keymaps/default-windows.json b/assets/keymaps/default-windows.json index fbd634751d89e880135751e823ab7d64112fc9eb..373befeee7fcf2d4fdd145a17fd58e43d850505a 100644 --- a/assets/keymaps/default-windows.json +++ b/assets/keymaps/default-windows.json @@ -733,8 +733,8 @@ "alt-tab": "editor::AcceptEditPrediction", "alt-l": "editor::AcceptEditPrediction", "tab": "editor::AcceptEditPrediction", - "ctrl-shift-right": "editor::AcceptNextWordEditPrediction", - "ctrl-shift-down": "editor::AcceptNextLineEditPrediction", + "alt-k": "editor::AcceptNextWordEditPrediction", + "alt-j": "editor::AcceptNextLineEditPrediction", }, }, { @@ -743,8 +743,8 @@ "bindings": { "alt-tab": "editor::AcceptEditPrediction", "alt-l": "editor::AcceptEditPrediction", - "ctrl-shift-right": "editor::AcceptNextWordEditPrediction", - "ctrl-shift-down": "editor::AcceptNextLineEditPrediction", + "alt-k": "editor::AcceptNextWordEditPrediction", + "alt-j": "editor::AcceptNextLineEditPrediction", }, }, {