Help for this page

Select Code to Download


  1. or download this
        if exists( "toggle_test_plan" )
            finish
        endif
    ...
            exe s:curLine
            exe "normal! ".s:curColumn."|"
        endfunction
    
  2. or download this
      " SaveCursorPosition
      function! <SID>SaveCursorPosition()
        let s:curLine = winline()
        let s:curColumn = wincol()
      endfunction