终端中的Emacs Meta-Key

时间:2012-10-15 12:45:21

标签: emacs

我正在尝试配置我的Meta-Key,这样我就可以在终端emacs中输入{},[]等(使用德语键盘)。我试过设置我的Meta-Key,但无法让它工作。我想将Alt + 8用于{,Alt + 9用于},Alt-5用于[,Alt-6用于]。

(setq mac-option-modifier nil
      mac-command-modifier 'meta
      x-select-enable-clipboard t)

请参阅: Unable to type braces and square braces in emacs

2 个答案:

答案 0 :(得分:3)

你试过吗?

(define-key global-map (kbd "M-8") "{")
(define-key global-map (kbd "M-9") "}")

答案 1 :(得分:0)

对于macos azerty法语键盘。它的:

(define-key global-map (kbd "M-(") "{")
(define-key global-map (kbd "M-)") "}")