I am building many functions in my application and now I want to alphabetise them. Is there any function in Sublime Text 2 that will do this automatiaclly. It should change these
public function login_1()
{
........
}
public function about()
{
........
}
public function close()
{
........
}
Into these
public function about()
{
........
}
public function close()
{
........
}
public function login_1()
{
........
}