Home
Software
TIL
Contact Me
Fixing Zed's debugger keybindings
Zed has a good debugger built-in but their keybindings are crazy. Thankfully, you can remap them by opening menu Zed / Settings / Open key bindings and adding this to the file:
  {
    "use_key_equivalents": true,
    "bindings": {
      "f11": "debugger::StepInto",
      "f10": "debugger::StepOver"
      // "shift shift": "file_finder::Toggle"
    }
  },
Those are standard Windows debugging keybindings. F7 and Ctrl + F11 just don’t make sense to me.
til zed debugging
Jul 22 2025

Home
Software
TIL
Contact Me