高亮emacs中一对大括号的匹配内容

Dro*_*ror 7 emacs

我有一次,我不知道如何再次打开它。在c++-mode(也可能在其他模式下),当我将光标放在左大括号之前或之后,除了突出大括号本身外,emacs 还会突出显示该对环绕的文本。这个功能怎么调用?我怎样才能再次拥有它?

谢谢!

sch*_*art 8

(show-paren-mode t)
(setq show-paren-style 'expression)
Run Code Online (Sandbox Code Playgroud)

Emacs手册show-paren-mode,但是它没有提到show-paren-style. 这篇 emacs-fu 博客文章确实如此。