If I have code that has a lot of if/then/else conditions like so:
if () {
if () {
} else {
}
} else {
if () {
} else {
}
}
and there might also be a lot of text inside those conditions. How can I quickly find the outermost if
as well as the corresponding else
.