Sublime Forum

Get all lines containing a keyword with their filenames

#1

So I want to find all files in a folder containing the public function
I want the list of all function names with their respective filenames.
Is this possible ?

0 Likes

#2

Not considering just use grep?

grep -R 'public function' FOLDER

Or ripgrep

rg -F 'public function' FOLDER
1 Like