Force exit (with a non-zero return value)
(event)
| 197 | event.app.suspend_to_background() |
| 198 | |
| 199 | def force_exit(event): |
| 200 | """ |
| 201 | Force exit (with a non-zero return value) |
| 202 | """ |
| 203 | sys.exit("Quit") |
| 204 | |
| 205 | def indent_buffer(event): |
| 206 | event.current_buffer.insert_text(' ' * 4) |
nothing calls this directly
no outgoing calls
no test coverage detected