0

我在 Emacs 中使用 Eshell 来运行程序,并且可以检查 Shell 中的输出,但我想突出显示一些诸如 'errors' 'info' 之类的词,或其他类似的词。我怎么能那样做?

4

2 回答 2

0
(defun font-lock-comment-annotations ()
  (font-lock-add-keywords
   nil
   '(("\\<\\(error\\)" 1 font-lock-warning-face t)
     ("\\<\\(info\\)" 1 'org-todo t)
   ))
(add-hook 'eshell-mode-hook 'font-lock-comment-annotations)

Give it a try :)

于 2019-03-30T07:45:01.953 回答
0

您应该尝试nschum/highlight-symbol.el,如下所示:

强调

于 2019-04-03T02:36:44.473 回答