My RSI is acting up, and I am trying to remap some keys in Emacs to help. Here's what I want to do:
I've gotten 1 working by myself but not 2. Point 2 is important for me because the habit is pretty deeply ingrained in me, and I need a reminder to help me switch.
Is this possible? Thank you! -Patrick
The original poster indicated that he remapped {
to M-j
, which caused Emacs to treat the latter as the former. In other words, the behavior for {
was the same as M-j
.
The following is a means of separating the two, and will serve to help remind the original poster that he wishes to train himself not to press the {
key:
(global-set-key [?\M-j] (lambda () (interactive) (insert "{")))
(global-set-key "{" (lambda () (interactive) (message "Bad boy!")))
;;; OR use the following instead:
;; (global-set-key "{" nil)