Sets the cursor position to the 0-based line and 0-based column.
( line, column )
| 71 | |
| 72 | |
| 73 | def SetCurrentLineAndColumn( line, column ): |
| 74 | """Sets the cursor position to the 0-based line and 0-based column.""" |
| 75 | # Line from vim.current.window.cursor is 1-based. |
| 76 | vim.current.window.cursor = ( line + 1, column ) |
| 77 | |
| 78 | |
| 79 | def CurrentColumn(): |