https://bugs.kde.org/show_bug.cgi?id=478303

--- Comment #7 from Lassi Väätämöinen <lassi.vaatamoi...@gmail.com> ---
(In reply to Lassi Väätämöinen from comment #6)
> Maybe these both should do it in more similar way?

Ah, missed this earlier; so for the keyboard completion popup is invoked from
KTextEditor side:

bool KateCompletionWidget::execute() {
...
    model->executeCompletionItem(view(), *m_completionRanges[model].range,
toExecute);
... 
}


And then in snippetcompletionmodel.cpp:

void SnippetCompletionModel::executeCompletionItem(KTextEditor::View *view,
const KTextEditor::Range &word, const QModelIndex &index) const
{
    if (index.parent().isValid()) {
        m_snippets[index.row()]->execute(view, word);
    }
}

Eventually running the same SnippetCompletionItem::execute(...) as the
mouse-selection path. But still, a bit differently.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to