(self, txt)
| 195 | signals.focus.send(section="body") |
| 196 | |
| 197 | def prompt_execute(self, txt) -> None: |
| 198 | callback = self.prompting |
| 199 | assert callback is not None |
| 200 | self.prompt_done() |
| 201 | msg = callback(txt) |
| 202 | if msg: |
| 203 | signals.status_message.send(message=msg, expire=1) |
| 204 | |
| 205 | |
| 206 | class StatusBar(urwid.WidgetWrap): |
no test coverage detected