While writing a C program in Vim editor, suppose I want to edit the argument list of a function for example:
int show_user_data(float num){ //Some code //more code } My cursor currently blinking on i of the int in
int show_user_data(float num){
How do I bring my cursor directly inside the argument list of the function i.e inside the round brackets so that it is now blinking (better going into insert mode also) at the f of float such that I am ready to edit the argument list already.
3w?