()
| 12 | def cli_is_multiline(mycli) -> Filter: |
| 13 | @Condition |
| 14 | def cond(): |
| 15 | if not mycli.multi_line: |
| 16 | return False |
| 17 | else: |
| 18 | doc = get_app().layout.get_buffer_by_name(DEFAULT_BUFFER).document |
| 19 | return not _multiline_exception(doc.text) |
| 20 | |
| 21 | return cond |
| 22 |
nothing calls this directly
no test coverage detected