(self)
| 1040 | pass |
| 1041 | |
| 1042 | def operate_and_get_next(self): |
| 1043 | # If we have not navigated back in history |
| 1044 | # ctrl+o will have the same effect as enter |
| 1045 | self.on_enter(reset_rl_history=False) |
| 1046 | |
| 1047 | def up_one_line(self): |
| 1048 | self.rl_history.enter(self.current_line) |
no test coverage detected