How to enter Greek characters in Emacs

后端 未结 10 1329
说谎
说谎 2021-01-30 11:20

This page indicates that Greek letters can be inserted into Emacs by using M-i. However, Emacs 23.2.1 in a Debian Squeeze variant inserts the \"tab\" character when

10条回答
  •  温柔的废话
    2021-01-30 11:35

    You can use another prefix, like:

    (global-set-key (kbd "C-x  a") "α")
    (global-set-key (kbd "C-x  b") "β")
    

    Or use global-abbrev-table as it's explained on the page you mentioned.

提交回复
热议问题