(self, stem: str)
| 317 | return ''.join(b[p+1:self.pos]) |
| 318 | |
| 319 | def get_completions(self, stem: str) -> tuple[list[str], CompletionAction | None]: |
| 320 | return [], None |
| 321 | |
| 322 | def get_line(self) -> str: |
| 323 | """Return the current line until the cursor position.""" |