Is there a way to collapse all functions in a given php file in TextMate?
For example, I have two methods:
function index() {
}
function beforeFilter() {
}
I would like to be able to issue a command in which all methods will be reset to:
function index() { ...
function beforeFilter() { ...
Thank!
source
share