Emacs:如何更改命令的匹配颜色" helm-grep-do-git-grep"?

时间:2017-04-15 11:09:54

标签: emacs

Windows 7,Emacs 25.1,Helm包

我的 helm-grep-do-git-grep 命令截图: enter image description here

我想将匹配文字颜色(深红色)更改为另一种颜色(例如绿色)。

我尝试在 helm-grep-face 中找到,但未找到。 enter image description here

那么我怎么能改变这种面色?

2 个答案:

答案 0 :(得分:0)

根据您的使用情况,您正在寻找以下任何一项:

(defface helm-git-grep-match
  '((default (:inherit helm-match)))
  "Face used to highlight git-grep(1) matches."
:group 'helm-git-grep-faces)

(defface helm-grep-match
  '((((background light)) :foreground "#b00000")
    (((background dark))  :foreground "gold1"))
  "Face used to highlight grep matches."
  :group 'helm-grep-faces)

因此,您可以通过致电M-x customize-group helm-grep-faces(或helm-git-grep-faces)来更改颜色。

答案 1 :(得分:0)

我找到了解决方案。我更改了“ d:\ Programs \ emacs \ .gitconfig ”。

添加部分:

[color "grep"] 
  match = black yellow 

现在匹配的文字颜色有前景色=黑色,而背景色=黄色