(self, no, value)
| 33 | return ts.current_text |
| 34 | |
| 35 | def __setitem__(self, no, value): |
| 36 | ts = self._to._get_tabstop(self._to, int(no)) |
| 37 | if ts is None: |
| 38 | return |
| 39 | # TODO(sirver): The buffer should be passed into the object on construction. |
| 40 | ts.overwrite(vim_helper.buf, value) |
| 41 | |
| 42 | |
| 43 | class _VisualContent(NamedTuple): |
nothing calls this directly
no test coverage detected