I don't actually want f itself to wrap across lines, but I would like to know how I can create a single key mapping which will jump to the next instance of the letter which follows it.
The mapping could be f or something else; perhaps I would use <C-/> which seems unbound.
The intention is that it would operate sort of like a function, and would take the next letter as its argument and perform:
/<argument><CR>
Is this possible, or would there have to be a separate key mapping for every letter, e.g.
nnoremap <C-/>a /a<CR>
nnoremap <C-/>b /b<CR>
...
?