Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

search all files for a given word

Tags:

appcode

I am using appcode to work on an xcode project. How do I search all source files in my project for a given keyword? The keyword need not be a method. Something like:

grep keyword *.m *.h

Thanks.

like image 729
user674669 Avatar asked Feb 20 '23 14:02

user674669


1 Answers

To perform a search across all the project files in the AppCode use Edit | Find | Find in Path. In the Text to find field put your keyword, in the File mask(s) field put the extensions separated by comma:

Find in Path

Note that the scope is set to the Whole project, you can limit it if needed.

like image 136
CrazyCoder Avatar answered Apr 06 '23 13:04

CrazyCoder