emacs 括号自动高亮

推荐使用highlight-parentheses mode

用list-packages安装,然后在init.el中添加

(require 'highlight-parentheses)
(define-globalized-minor-mode global-highlight-parentheses-mode
  highlight-parentheses-mode
  (lambda ()
    (highlight-parentheses-mode t)))
(global-highlight-parentheses-mode t)

这样默认所有buffer都启用了。

可以将括号从内到位用不同颜色显示,相当好用。

show-paren-mode, 忘了它吧。

    原文作者:括号匹配问题
    原文地址: https://blog.csdn.net/csfreebird/article/details/49157161
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞