-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auto-completion supported? #10
Comments
I do not think core Ace editor provides those options, you most likely need to load some extension. |
Hi @sconix for autocomplete is required config : but in this not part of library configinterface. |
After following advice in another comment to a related question, I set the following import in my polyfills.ts file:
After that Ace loads up as expected. To get the auto complete working, I then have to add the following to the components that want auto completion: Existing:
NEW:
Existing:
I hope this helps someone. Let me know if there was a better way of doing this that the authors originally intended. |
It works for me. Thank you! |
The vanilla Ace Editor has some options related to code completion, namely: enableBasicAutocompletion and enableLiveAutocompletion. These don't appear to be supported by the wrapper, but I might be missing something. Is it possible to use these and other custom options in any way?
The text was updated successfully, but these errors were encountered: