Git - Color words excluding {}

后端 未结 2 623
一生所求
一生所求 2021-01-11 18:21

I am using git with --color-words to view my diff. In my diff, it shows that I removed

{{ljcount}}   Changes
<         


        
2条回答
  •  生来不讨喜
    2021-01-11 19:26

    Since you already use --color-words, you don't need to supply --word-diff-regex separately, the first option accepts a regex:

    --color-words[=]
    

    Equivalent to --word-diff=color plus --word-diff-regex= (if a regex was specified).

    A regex that works particularly well for me is:

    $ git diff --color-words='\w+|.'
    

提交回复
热议问题