2

If I do this:

M-x highlight-regexp \cite{\(.+\)}

then pick a color. Later, if want to unhiglight all previous higlights, I have to do them one by one, e.g.

M-x unhighlight-regexp \cite{\(.+\)}

Is there not a command to un-highlight all?

Drew
  • 77,472
  • 10
  • 114
  • 243
  • 1
    The docs for unhighlight-regexp suggest using C-u and then M-x unhighlight-regexp to remove all of them. – amitp Apr 08 '20 at 04:32
  • @amitp: Please consider providing that info as an answer. Comments can be deleted at any time. Thx. – Drew Apr 08 '20 at 16:58

1 Answers1

3

The docs for unhighlight-regexp suggest using C-u and then M-x unhighlight-regexp to remove all of them. (credits: @amitp)