Emacs+highlightparentheses高亮括号

EmacsWiki上关于它的介绍HighlightParentheses,下载最新版请通过作者的GitHubhttps://github.com/nschum/highlight-parentheses.el

目前的最新版是1.0.2

image

加载文件中加入以下语句

(require 'highlight-parentheses)

用M-x highlight-parentheses-mode来启动。

能看到光标处于括号中的任意位置,高亮最接近的括号,而且用不同颜色依次高亮外侧的n层括号。如果觉得默认的配色太接近,不易区分,也可以改色:

image

在highlight-parentheses.el的61行,有如下定义

(defcustom hl-paren-colors
'("firebrick1" "IndianRed1" "IndianRed3" "IndianRed4")

自定义这些颜色即可,由左到右依次是由内到外的括号的颜色。

Emacs for window: 24.2
highlight-parentheses.el : 1.0.2
原文地址:https://www.cnblogs.com/gamesun/p/2867080.html