pvolok/mprocs

panic after shift tab

ImLunaHey opened this issue · 3 comments

Ran into the same issue

As a temporary workaround, I set the Shift-Tab keybind in my terminal emulator (Alacritty) to do nothing.

[keyboard]
bindings = [
  { key = "Tab", mods = "Shift", chars = "" }
]

This disables the keybind from crashing mprocs but it does not resolve the issue.

This is fixed in development (unreleased) version -

KeyCode::BackTab => buf.push_str("BackTab"),

BackTab is handled in all cases from what I can tell.

Current release has this todo!() which causes panic

BackTab | Null => todo!(),

You can close the issue ig.