[BUG] Toggling "accept edits" doesn't work
Resolved 💬 2 comments Opened Jan 15, 2026 by GTCrais Closed Jan 15, 2026
Preflight Checklist
- [x] I have searched existing issues and this hasn't been reported yet
- [x] This is a single bug report (please file separate reports for different bugs)
- [x] I am using the latest version of Claude Code
What's Wrong?
"alt+m" doesn't do anything. "shift+tab" acts as if I only pressed Tab.
I tried all the diffrent CLIs in Windows (cmd, powershell, etc.), then I switched to WezTerm, nothing worked. I got "shift+enter" to work, and "alt+p" to work, but toggling "accept edits" is just impossible.
Here's my current WezTerm config:
local wezterm = require 'wezterm'
local act = wezterm.action
wezterm.log_info("Config loaded!")
return {
default_prog = { 'powershell.exe' },
enable_kitty_keyboard = false,
enable_csi_u_key_encoding = true,
use_dead_keys = false,
keys = {
{ key = 'c', mods = 'CTRL|SHIFT', action = act.CopyTo 'Clipboard' },
{ key = 'c', mods = 'CTRL', action = act.SendKey { key = 'c', mods = 'CTRL' } },
{ key = 'Enter', mods = 'SHIFT', action = act.SendString '\x0a' },
-- Alt -> Meta (ESC prefix)
{ key = 'm', mods = 'ALT', action = act.SendString '\x1bm' },
{ key = 'p', mods = 'ALT', action = act.SendString '\x1bp' },
},
}
enable_kitty_keyboard, enable_csi_u_key_encoding, use_dead_keys -- I tried with all false / true combinations for these, didn't work.
All of the configured shortcuts here work, except the "alt+m" one.
What Should Happen?
"accept edits" should be toggled.
Error Messages/Logs
None.
Steps to Reproduce
Fully updated Windows 11:
npm install -g @anthropic-ai/claude-code- switch to project folder
- "change AppFooter background to red"
- accept all edits for this session
- after claude executes the request, "alt+m" doesn't toggle "accept edits", and neither does "shift+tab"
Claude Model
Opus
Is this a regression?
I don't know
Last Working Version
_No response_
Claude Code Version
2.1.7 (Claude Code)
Platform
Anthropic API
Operating System
Windows
Terminal/Shell
PowerShell
Additional Information
_No response_
This issue has 2 comments on GitHub. Read the full discussion on GitHub ↗