find that Mx is too slow and painful to use
Iβm a touch machine, and it seems to me that this is so, and I also think that all the shortcuts are C-xalso very difficult to make.
Is there a way to map the Mx key to the key next to the ESC key?
, ESC "" : , ( , , "" ).
, QWERTY, C-x C-,
, - : -, . , C-x C-, M-x M-, ?
, , :
(define-key global-map [(control ,)] ctl-x-map)
, , ( , SO):
(define-key my-keys-minor-mode-map (kbd "C-,") ctl-x-map)
(define-key my-keys-minor-mode-map (kbd "M-,") 'execute-extended-command)
... put more mappings here ...
(define-minor-mode my-keys-minor-mode
"A minor mode so that my key settings override annoying major modes."
t " my-keys" 'my-keys-minor-mode-map)
(my-keys-minor-mode 1)
, , "" C- M-, .
, scottfrazer ( , .emacs):
Emacs