i am using a mode, but am not used to its key-bindings: some of them conflict to the emacs global ones. so, i want to add a prefix key-binding to all its existing keybindings.
for example, if my-mode defines key-binding M-] for my-mode-shot, i am looking for some ways as following:
(define-prefix-for-mode 'my-mode (kbd "C-c m"))
then the key-binding for my-mode-shot now is C-c m M-].
how should one add a prefix key-binding to all available key-bindings of a specific mode?