Hi,
I'm testing Ace Editor GWT (which has just today exposed the autocompletion APIs), and the problem is that I just want to use my explicit callback based autocompleters, not the "local" autocompletions.
This is for two reasons:
1) Local autocompletions seem to slow down the editor, which I guess is to do with the constant tokenization of words in the editor.
2) Local completions give the user too many options that don't make sense in all context.
My question is, what is the approved method of disabling local completions (such that the text isn't also tokenized in the background too -- which is greatly slowing down the editor on medium size documents)?
If an existing method of achieving this does not exist, might I suggest adding support for the following flag:
editor.setOptions({ enableLocalAutocompletion: false });
Regards,
Chris