Title pretty much sums up the question. I am learning emacs and have all the basic commands mastered but I don't know how to achieve full text search yet
What is the emacs command to do full text search across all open buffers? like sublimetext's command+shift+f?
Asked Answered
Use M-x multi-occur-in-matching-buffers
.
You can give a blank for the regexp. Then the expression.
There are several good ways to do what you ask. This is a duplicate question. See:
© 2022 - 2024 — McMap. All rights reserved.
M-x rgrep
can be quite useful. – Ixion