Home
last modified time | relevance | path

Searched refs:wordBeforeCursorBegin (Results 1 – 2 of 2) sorted by relevance

/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/vimode/emulatedcommandbar/
H A Dcompleter.cpp214 completionStartParams.wordStartPos = wordBeforeCursorBegin(); in activateWordFromDocumentCompletion()
220 const int wordBeforeCursorBegin = this->wordBeforeCursorBegin(); in wordBeforeCursor() local
221 …return m_edit->text().mid(wordBeforeCursorBegin, m_edit->cursorPosition() - wordBeforeCursorBegin); in wordBeforeCursor()
224 int Completer::wordBeforeCursorBegin() in wordBeforeCursorBegin() function in Completer
226 int wordBeforeCursorBegin = m_edit->cursorPosition() - 1; in wordBeforeCursorBegin() local
227 while (wordBeforeCursorBegin >= 0 in wordBeforeCursorBegin()
228 …&& (m_edit->text()[wordBeforeCursorBegin].isLetterOrNumber() || m_edit->text()[wordBeforeCursorBeg… in wordBeforeCursorBegin()
229 wordBeforeCursorBegin--; in wordBeforeCursorBegin()
231 wordBeforeCursorBegin++; in wordBeforeCursorBegin()
232 return wordBeforeCursorBegin; in wordBeforeCursorBegin()
H A Dcompleter.h77 int wordBeforeCursorBegin();