When I was using emacs, I used to bind <space> b with buffer related operations, like <space> b n = next-buffer
But in ad, <space> b is hard coded in normal.rs, so this prefix cannot be used any more.
So my question is, is there a way to unbind it without changing the code?
I have rebind C-f in ~/.ad/config.toml
"C-f" = { send_keys = "<page-down>" }
"C-b" = { send_keys = "<page-up>" }
and it would be nice if it allow me to
"<space> b p" = { run = "prev-buffer" }
"<space> b n" = { run = "next-buffer" }
"<space> b r" = { run = "reload-buffer"