(self)
| 1045 | self.on_enter(reset_rl_history=False) |
| 1046 | |
| 1047 | def up_one_line(self): |
| 1048 | self.rl_history.enter(self.current_line) |
| 1049 | self._set_current_line( |
| 1050 | tabs_to_spaces( |
| 1051 | self.rl_history.back( |
| 1052 | False, search=self.config.curtsies_right_arrow_completion |
| 1053 | ) |
| 1054 | ), |
| 1055 | update_completion=False, |
| 1056 | reset_rl_history=False, |
| 1057 | ) |
| 1058 | self._set_cursor_offset(len(self.current_line), reset_rl_history=False) |
| 1059 | |
| 1060 | def down_one_line(self): |
| 1061 | self.rl_history.enter(self.current_line) |