If I have a function declared as such:
public static void main(String[] args){
blahblahlbah;
}
Is there anyway to move from the “p” in public to the ending “}” of the function?
It can be assumed that the method body is of considerable length and does contain curly braces if that makes a difference.
Thanks!
Try this key sequence:
f{%Should do it.