I want to set a key binding for the following function: 'multi-occur-in-matching-buffers. This what I added to my .emacs:
(global-set-key (kbd "C-p") 'multi-occur-in-matching-buffers)
This works fine but I would like to have the default behaviour to look up in all the buffers. This is done by passing . as a default argument.
How do I change the line in my config so it does that?
Gracias!