| 306 | } |
| 307 | |
| 308 | void 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 | |
| 318 | void ScintillaBase::AutoCompleteCharacterDeleted() { |
| 319 | if (sel.MainCaret() < ac.posStart - ac.startLen) { |
nothing calls this directly
no test coverage detected