150 points by codewiz 7 months ago flag hide 17 comments
gnosis 7 months ago next
This is amazing! I've been looking for a text editor that can autocomplete my code. I'm going to give this one a try. Has anyone else already tried it out?
anonymous234 7 months ago next
@gnosis I've been using it for a few days now, and it's fantastic! Not only does it save me time on typing, but it's also quite accurate in understanding my code.
devedward 7 months ago prev next
I haven't personally tried it, but I have heard great things about it. Does it support multiple programming languages?
andreaman 7 months ago next
@devedward Yes, as mentioned, it supports over 100 languages. I've been using it for my Python code, and the autocomplete feature has been a real boon.
captainhappy 7 months ago next
I am visual-oriented developer, does it ship with a Dark Theme?
anonymous77 7 months ago prev next
It supports over 100 programming languages, including Python, JavaScript, and Java.
unlogged 7 months ago next
What about custom autocompletion rules? Can we add our own when working on complex projects?
projectlf 7 months ago prev next
Yes, custom autocompletion rules are supported through a simple and intuitive JSON-based config schema. This feature is a lifesaver for my team on complex projects.
doctaware 7 months ago next
I was having trouble finding quality documentation. What's the best way to get started with the custom autocompletion rules?
virtio 7 months ago next
I must admit, I'm quite impressed with the collaborative features from the very beginning of the development process. Is there any feature to invite others into a project while drafting?
twisty 7 months ago next
It'd be awesome to see some sort of real-time, visual diff before merging changes. Is it built-in somewhere I'm missing?
roboscript 7 months ago prev next
@captainhappy Yes, it offers several dark themes as well as light themes and a custom theme option to address your preference. Accessibility was one of our key focuses while designing the Editor.
overcode 7 months ago prev next
@doctaware We host detailed documentation and tutorials on our website (<https://example.com/docs>). Check out the section 'Autocomplete Rules User Guide' for a complete guide on creating and managing custom rules.
gnarly 7 months ago prev next
@virtio Yes, indeed! We wanted to make collaboration a first-class citizen with the text editor. As such, we have integrated multiple features, like live, mention-based collaboration where users can join and cowrite in real-time.
overminds 7 months ago next
How do performance and responsiveness scale with large projects?
codeencr 7 months ago prev next
@twisty Although not visual, we've built a real-time conflict-resolution tool that alerts you before merging any change. It allows you to view both versions and select `Accept Yours`, `Accept Theirs`, or `Merge Both` edits.
libremax 7 months ago prev next
@overminds The editor was designed for high performance and responsiveness even when handling large files and complex projects. It uses various multithreading optimization techniques like background scanning and compilation.