I am creating many functions in my application, and now I want them in alphabetical order. Is there any function in Sublime Text 2 that will do this automatically. It should change these
public function login_1()
{
........
}
public function about()
{
........
}
public function close()
{
........
}
In these
public function about()
{
........
}
public function close()
{
........
}
public function login_1()
{
........
}
source
share