From 14e1fc216b01fd3ee098d1149593f33de7473630 Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 28 Jan 2026 20:56:50 +0000 Subject: [PATCH] fix claude-code incorrect shift+enter keybinding See: https://github.com/anthropics/claude-code/issues/14793 --- alacritty-claude.toml | 5 ----- src/base.toml | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-) delete mode 100644 alacritty-claude.toml diff --git a/alacritty-claude.toml b/alacritty-claude.toml deleted file mode 100644 index 20f111b..0000000 --- a/alacritty-claude.toml +++ /dev/null @@ -1,5 +0,0 @@ -# Claude added the following but chars line breaks config -[[keyboard.bindings]] -key = "Return" -mods = "Shift" -chars = "\x1b\r" diff --git a/src/base.toml b/src/base.toml index 8686696..414fd94 100644 --- a/src/base.toml +++ b/src/base.toml @@ -36,6 +36,13 @@ style = "Semibold" x = -1 y = 0 + +# claude-code shift+enter support +[[keyboard.bindings]] +key = "Return" +mods = "Shift" +chars = "\u001B\r" + [[keyboard.bindings]] action = "Paste" key = "V"