<table><tr><td style="">thomassc created this revision.<br />thomassc added a reviewer: KTextEditor.<br />thomassc added a project: KTextEditor.<br />Herald added projects: Kate, Frameworks.<br />Herald added subscribers: kde-frameworks-devel, kwrite-devel.<br />thomassc requested review of this revision.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D17932">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>My goal is to fix two issues with code completion in KDevelop:</p>

<p>First, it seems to be mostly insensitive to upper/lowercasing, which is an issue with a case-sensitive language such as C++. I'd like to have all (case-insensitive) matches in the completion list, but always sort those to the top and have them selected by default which match the case of the typed text.</p>

<p>Second, I'd like to have the completion widget hidden when there is a case-sensitive exact match, such that the completion widget does not obstruct the view in this case. Currently it never seems to get hidden automatically.</p>

<p>This diff is an attempt to implement a first step towards these goals by improving some things in KTextEditor. I'd make more changes to ensure that the auto-selected completion item tries to match the case of the typed text, and to make this usable in KDevelop, but would like to put this up here for discussion first before making further changes. Would you be fine with the proposed changes in general? Would you choose a different approach? The changes in this initial diff are described below.</p>

<ol class="remarkup-list">
<li class="remarkup-list-item">The diff introduces a new setting m_exactMatchCaseSensitivity next to m_matchCaseSensitivity. By setting m_matchCaseSensitivity == Qt::CaseInsensitive and m_exactMatchCaseSensitivity == Qt::CaseSensitive, it is possible to have all case-insensitive matches in the completion list, while only allowing case-sensitive matches to be exact matches (that will hide the completion widget).</li>
<li class="remarkup-list-item">In KateCompletionModel::Item::operator <, the (case-sensitive) comparison with the current typed text is moved up to just below the matchCompletion comparison. This means that items with correctly matching case will match better than items with incorrect case (if they both start with the typed text), regardless of inheritance depth and alphabetical ordering.</li>
<li class="remarkup-list-item">This comparison is also modified to only return true or false if only one of the items matches the typed text. The original code would yield inconsistent results if both items match the typed text, since the comparison would return true for both the test (a < b) and the test (b < a).</li>
<li class="remarkup-list-item">When determining whether a completion item matches the typed text, the diff makes matchesAbbreviation() take model->matchCaseSensitivity() into account (as the other match tests already do). This fixes the issue that without this change, "test" and "TEST" would be considered to match exactly with model->matchCaseSensitivity() == Qt::CaseSensitive, since the abbreviation matching would treat it as a match.</li>
</ol>

<p>Regarding point 2, this change will only sort those completion items by case-compatibility that start with the typed text, but not the others. An alternative would be to determine case-compatibility of the item with the typed text when matching (in KateCompletionModel::Item::match()). Then completion items with the same MatchType could be sorted by case-compatibility (either in binary form, "matches case" vs. "does not match case", or by counting the number of letters with differing case).</p></div></div><br /><div><strong>TEST PLAN</strong><div><p>completion_test still passes. Added four checks to this test which test case-sensitive matching with matchesAbbreviation(). Did some manual testing.</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R39 KTextEditor</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D17932">https://phabricator.kde.org/D17932</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>autotests/src/completion_test.cpp<br />
src/completion/katecompletionmodel.cpp<br />
src/completion/katecompletionmodel.h</div></div></div><br /><div><strong>To: </strong>thomassc, KTextEditor<br /><strong>Cc: </strong>kwrite-devel, kde-frameworks-devel, hase, michaelh, ngraham, bruns, demsking, head7, cullmann, kfunk, sars, dhaumann<br /></div>