Binding M- / M- in Emacs 23.1.1
Emacs has a complex mechanism to handle the vicissitudes of function key and modifier encodings on various terminal types. It doesn’t work out of the box in all cases. The following settings should work on your terminal: (define-key input-decode-map “\e\eOA” [(meta up)]) (define-key input-decode-map “\e\eOB” [(meta down)]) (global-set-key [(meta up)] ‘transpose-line-up) (global-set-key [(meta down)] ‘transpose-line-down) … Read more