In Vim there are find commands ('f', 't', 'F', 'T'), those commands can be repeated by using either ';' or ','. I want to be able to repeat those commands by using 'n' and 'N'. Basically as if I used word search ('/').
For example when I type 'fa', I want vim to act like I executed the command '/a'.
How can I make this happen?