> Ofcourse I can use the search, /, but it needs more
> keystrokes. Any advice? Thanks in advance.

Why not use something like this?

function DoMappings()
  let 
chars=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
  let 
chars+=['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']
  for c in chars
    " map a to /a<cr> etc should not stop at line line borders
    exec 'noremap f'.c.' /'.c.'<cr>'
    exec 'noremap F'.c.' ?'.c.'<cr>'
    " perhaps add :set nohlsearch? ;)
  endfor
endfun

Marc

BTW: I like it. I'll use it, too. 
Will be realy handy to move to  { and }

Reply via email to