Is there a shortcut in awk?

Is there a key board shortcut in vi editor to allow me to find the next ( or { that are corresponding to the first one?

Thanks!

It's % sign.

To do this, type /\/ to find first /. type /\} to find first }. Subsequent / or
}, type n which stands for next.