IDE Search for text
Please add a "search" facility to search all functions in the project for a text string.
Use case example:
You have a scope variable called "product" defined in the index page (so it's global). In some function you set it to the product code:
$scope.product=
Now later in development you decide to create a MODEL called productModel with various fields and use that instead so you can have product.name, product.code, product.price.
Now you want to find all occurrences of $scope.product and change the code in each function. Or indeed in a property where you have used the name in an ng-show or ng-hide attribute.
It should also be used just to search in the page design in case you want to change say every "Name" to "Description".
A top level menu for Search with a "search term" entry and then some options for what/where to search would be awesome (please).