Remember the content of the buffer and the position.
(self, to)
| 80 | self._poss.append(VimPosition()) |
| 81 | |
| 82 | def remember_buffer(self, to): |
| 83 | """Remember the content of the buffer and the position.""" |
| 84 | self._lvb = vim_helper.buf[to.start.line : to.end.line + 1] |
| 85 | self._lvb_len = len(vim_helper.buf) |
| 86 | self.remember_position() |
| 87 | |
| 88 | @property |
| 89 | def pos(self): |
no test coverage detected