From 40138e12a43f26690924a28ba4dbd17bc8d4ff51 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Thu, 25 Sep 2025 13:51:19 -0400 Subject: [PATCH] windows: Make `ctrl-n` open a new terminal when in a terminal (#38900) This is how `ctrl-n` works on macOS. Right now `ctrl-n` on Windows with the default keymap usually causes a new buffer to open, which is inconvenient. Release Notes: - N/A --- assets/keymaps/default-windows.json | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/keymaps/default-windows.json b/assets/keymaps/default-windows.json index c1f8c2487a85127763836a34843e4bf3e1f02ffc..fe9efe0f720e7c76bd25878426b9601e6910099b 100644 --- a/assets/keymaps/default-windows.json +++ b/assets/keymaps/default-windows.json @@ -1110,6 +1110,7 @@ "alt-f": ["terminal::SendText", "\u001bf"], "alt-.": ["terminal::SendText", "\u001b."], "ctrl-delete": ["terminal::SendText", "\u001bd"], + "ctrl-n": "workspace::NewTerminal", // Overrides for conflicting keybindings "ctrl-b": ["terminal::SendKeystroke", "ctrl-b"], "ctrl-c": ["terminal::SendKeystroke", "ctrl-c"],