| 50 | |
| 51 | namespace { |
| 52 | bool isChatEditor(Core::IEditor *editor) |
| 53 | { |
| 54 | return editor && editor->document() |
| 55 | && editor->document()->id() == Utils::Id(Constants::QODE_ASSIST_CHAT_EDITOR_ID); |
| 56 | } |
| 57 | |
| 58 | QKeySequence sendMessageKeySequence() |
| 59 | { |
no test coverage detected