Returns the text before CurrentColumn.
()
| 110 | |
| 111 | |
| 112 | def TextBeforeCursor(): |
| 113 | """Returns the text before CurrentColumn.""" |
| 114 | return ToUnicode( vim.current.line[ :CurrentColumn() ] ) |
| 115 | |
| 116 | |
| 117 | def BufferModified( buffer_object ): |
nothing calls this directly
no test coverage detected