Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple "Occur" result buffers in emacs?

Tags:

emacs

Is there a package that allows me to have multiple Occur result buffer for the same buffer (like grep-a-lot: http://www.emacswiki.org/emacs/grep-a-lot.el).

I run into this issue when analyzing log files for multiple keywords (say to see what different but related threads were doing).

like image 690
Vikas Avatar asked Mar 28 '11 17:03

Vikas


1 Answers

You don't need an additional package. C-ur will rename the current occur buffer to an unique name. You can add occur-rename-buffer to occur-hook to make it automatic (see the documentation of occur-rename-buffer which mentions this, too).

like image 180
Rörd Avatar answered Oct 16 '22 10:10

Rörd