-
Notifications
You must be signed in to change notification settings - Fork 78
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
code editor type inference #571
Comments
This could be achieved by integrating python language server support. |
I have been looking into https://github.com/microsoft/monaco-editor. This editor is a shimmed editor from VSCode sources and runs on browsers (no mobile device support), has some documentation and examples and provides support for syntax highlighting for the languages we use. Instead of writing a completer logic for A languge server client for Monaco editor has been developed here. |
Another related project: https://github.com/eclipse-theia/theia |
This issue needs to be broken down into two different issues.
|
* Initial commit for replacing ace with monaco editor * WIP- Remove ace from TextEditor * WIP- Integrate vim keybindings * Ensure editor hasn't been destroyed while loading vim keybindings * Remove dummy python code for '' * WIP- Add support for additional themes * WIP- Fix eslint issues, remove unused functions in LogViewerWidget * WIP- Fix more eslint and code climate fixes * WIP- Fix model dispose problem by disposing editor only * WIP-Remove console.log statement from TextEditorWidget.js Co-authored-by: Brian Broll <brian.broll@gmail.com>
To support more robust autocomplete in the code editors, we should use type inference before determining the possible completions
The text was updated successfully, but these errors were encountered: