| 301 | } |
| 302 | |
| 303 | void ScintillaBase::AutoCompleteMoveToCurrentWord() { |
| 304 | std::string wordCurrent = RangeText(ac.posStart - ac.startLen, sel.MainCaret()); |
| 305 | ac.Select(wordCurrent.c_str()); |
| 306 | } |
| 307 | |
| 308 | void ScintillaBase::AutoCompleteCharacterAdded(char ch) { |
| 309 | if (ac.IsFillUpChar(ch)) { |