In GNU Emacs there is a feature to highlight matching brackets in code with the same colour.
However when the code which the brackets enclose is really long with several nested if's for's etc. then this feature is not really useful since one of the brackets will not be visible.
Say I have the following,
for(int i=0; i< N; ++i)
{
/*Long code*/
}
If my cursor is on the }
brace I would like to have some feature which will enable me to jump / see the {
brace, and then , if satisfied, come back to the }
brace for any future coding.
Is this possible in Emacs?