codeanywhere search through multiple files content

1

Im thinking to use codeanywhere on my laptop. Currently im using dreamweaver on my desktop and it has a feature to search through all files for a string i.e. i want to fine all files that call a certain function.

is there a way to do that in codeanywhere?

Andrew

Posted 2016-01-10T16:31:22.117

Reputation: 31

Answers

0

This may be relevant to you (the section entitled: GoTo (Find in Files))

In order to search across a set of files, you'll want to use the Goto Files feature. Here, you can search of a string or regular expression, within your entire File Explorer. You can also filter based on extensions, like .html or .php. It is located on top of File Explorer and is represented by magnifying glass icon and the "Goto Files" text.

Jonno

Posted 2016-01-10T16:31:22.117

Reputation: 18 756

i dont seem to have that option for some reason: – Andrew – 2016-01-10T17:08:16.470

http://i.imgur.com/YdHQcIy.png – Andrew – 2016-01-10T17:08:19.343

@Andrew Not sure - may be worth trying to contact them directly as this is from their documentation. I just checked and I too do not have it and can't see a way to find it. – Jonno – 2016-01-10T17:44:42.673

ok thanks, at least i know its not just my account – Andrew – 2016-01-11T18:33:14.353

0

You can workaround the problem by doing a search at the SSH Terminal: grep -rnw -e "you search text"

Rinos

Posted 2016-01-10T16:31:22.117

Reputation: 103