Ever need to find a corresponding curly brace in a block of code. Just use Ctrl-] and it will find it for you!! I think this one will come in handy! Another one that comes in handy is Ctrl-K-F which auto formats your code.
Here is a sample if statement:
if(true)
{
if(true)
{
if(true)
{
if(true)
{
if(true)
{
}
}
else
{
if(true)
{
}
}
}
else
{
if(true)
{
if(true)
{
}
}
else
{
if(true)
{
}
}
}
}
else
{
if(true)
{
if(true)
{
if(true)
{
}
}
else
{
if(true)
{
}
}
}
else
{
if(true)
{
if(true)
{
}
}
else
{
if(true)
{
}
}
}
}
}