Postfix without dictionary expansion, similar to prefix handling.
(self, s='', refresh=True)
| 1431 | self.refresh() |
| 1432 | |
| 1433 | def set_postfix_str(self, s='', refresh=True): |
| 1434 | """ |
| 1435 | Postfix without dictionary expansion, similar to prefix handling. |
| 1436 | """ |
| 1437 | self.postfix = str(s) |
| 1438 | if refresh: |
| 1439 | self.refresh() |
| 1440 | |
| 1441 | def moveto(self, n): |
| 1442 | # TODO: private method |