Returns the text after CurrentColumn.
()
| 105 | |
| 106 | |
| 107 | def TextAfterCursor(): |
| 108 | """Returns the text after CurrentColumn.""" |
| 109 | return ToUnicode( vim.current.line[ CurrentColumn(): ] ) |
| 110 | |
| 111 | |
| 112 | def TextBeforeCursor(): |
nothing calls this directly
no test coverage detected