MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / AutoCompleteCharacterAdded

Method AutoCompleteCharacterAdded

scintilla/src/ScintillaBase.cxx:308–316  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

306}
307
308void ScintillaBase::AutoCompleteCharacterAdded(char ch) {
309 if (ac.IsFillUpChar(ch)) {
310 AutoCompleteCompleted();
311 } else if (ac.IsStopChar(ch)) {
312 AutoCompleteCancel();
313 } else {
314 AutoCompleteMoveToCurrentWord();
315 }
316}
317
318void ScintillaBase::AutoCompleteCharacterDeleted() {
319 if (sel.MainCaret() < ac.posStart - ac.startLen) {

Callers

nothing calls this directly

Calls 2

IsFillUpCharMethod · 0.80
IsStopCharMethod · 0.80

Tested by

no test coverage detected