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?
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?
unhighlight-regexp
suggest usingC-u
and thenM-x unhighlight-regexp
to remove all of them. – amitp Apr 08 '20 at 04:32