René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

Setting the cursor position in VIM

fun! SC()
  let s:x = col (".")
  let s:y = line(".")

  call cursor(s:y+1, s:x+1)
endf