| 657 | } |
| 658 | |
| 659 | bool QuickOpenPlugin::jumpToSpecialObject() |
| 660 | { |
| 661 | QPair<QUrl, KTextEditor::Cursor> pos = specialObjectJumpPosition(); |
| 662 | if (pos.second.isValid()) { |
| 663 | if (pos.first.isEmpty()) { |
| 664 | qCDebug(PLUGIN_QUICKOPEN) << "Got empty url for special language object"; |
| 665 | return false; |
| 666 | } |
| 667 | |
| 668 | ICore::self()->documentController()->openDocument(pos.first, pos.second); |
| 669 | return true; |
| 670 | } |
| 671 | return false; |
| 672 | } |
| 673 | |
| 674 | void QuickOpenPlugin::quickOpenDefinition() |
| 675 | { |
nothing calls this directly
no test coverage detected