-
Notifications
You must be signed in to change notification settings - Fork 220
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
VSCode Editor alongside emacs/vim #2483
Comments
I've found an interesting editor which supports all language, |
It seems other platforms are using |
Emacs/Vim are just keybindings provided by CodeMirror. We don't have any plan to switch to Monaco at the moment. Also, enabling autocompletion for the languages we support is not as easy as switching to Monaco. Language Servers must be started in the correct context for each user, and the editor must communicate with them over WebSocket. Some languages like JavaScript and TypeScript have Language Servers that can work in browser, but those won't work as expected in our case because we're using Node.js. We support autocompletion for main languages at Qualified, but I doubt we'll enable it for free users on Codewars. Maybe as a paid feature in the future. |
Thanks for the answer, but It's a basic feature that almost every platform supports, and it's kind of annoying to code on |
We know it's nice to have, and we'd love to support it, but it's not cheap. Like I wrote above, we might introduce autocompletion as a paid feature.
I disagree. It's definitely not a basic feature when you need remote Language Servers. I also disagree about almost every platform supporting it. It's probably more limited than you think. Incomplete autocompletion ignoring context is more annoying than not having any.
I wrote some technical details in codewars/runner#42 (comment) if interested. |
Thanks, I hope to see this feature soon👍 |
Hi,
typing and formatting the code manually is really time consuming and annoying.
Is there any plan to integrate an editor with IntelliSense/autocompletion like vscode integration in the browser like github editor, typescript playground, codesandbox etc. ?
It would be great if the vscode integration can be used in the codewars😍
like this ( just press dot key on the keyboard (
.
) to see it):https://github.dev/?redirect=%2Fcodewars%2Fcodewars.com
The text was updated successfully, but these errors were encountered: