Returns the text on the 1-indexed line (NOT 0-indexed)
( line_number )
| 1199 | |
| 1200 | |
| 1201 | def LineTextInCurrentBuffer( line_number ): |
| 1202 | """ Returns the text on the 1-indexed line (NOT 0-indexed) """ |
| 1203 | return vim.current.buffer[ line_number - 1 ] |
| 1204 | |
| 1205 | |
| 1206 | def ClosePreviewWindow(): |