A Text Editor I'm working on. - Printable Version +- Forums - Open Redstone Engineers (https://forum.openredstone.org) +-- Forum: Off-Topic (https://forum.openredstone.org/forum-4.html) +--- Forum: Programming (https://forum.openredstone.org/forum-8.html) +--- Thread: A Text Editor I'm working on. (/thread-54.html) |
A Text Editor I'm working on. - mad1231999 - 04-19-2013 I know, terrible name ![]() But anyway, I'm working on a text editor, which is written in C++. It'll just be a basic one, like Notepad++ or something. Won't be anything like a fancy IDE with member-lookups and stuff. Here is a screenshot of it's current state: ![]() Notice the multiple cursors. Here is a screenshot with debug mode enabled: ![]() Features:
Right now I'm working on editing the text(selections, copying etc.) You can follow the development of the project, and download the latest release(updated something like twice a day) on the project's Github page. EDIT: The forums are being derp. If you cannot see the image, it's visible on the Github page. RE: A Text Editor I'm working on. - Nickster258 - 04-20-2013 This would be nice! RE: A Text Editor I'm working on. - fibonatic - 04-20-2013 Looks nice. Not sure if any other text editor has this, but it would be nice to add in comments which aren't part of the line like this: "<code> //<comments>" but could be clicked or something which would open a smaller text field containing the comments, so you would be able to add big comments without disrupting the "flow" of the actual code (similar to the comments you can add to a line in github in history). The only downside to this would be that other editors probably won't be able to view these comments. RE: A Text Editor I'm working on. - mort96 - 04-20-2013 A solution may be that it automatically does that with multi line comments. Use the first line as a title, and if you click on it, you see the rest. Would be important to make it very clear that you can click it to see more though, or else the user could end up thinking there is only that first line of comment. RE: A Text Editor I'm working on. - EDevil - 04-20-2013 Looks promising & way to complicated for me to do XD. Awesome work Mad, and i'll keep track on github on this one. RE: A Text Editor I'm working on. - fibonatic - 04-20-2013 You could add a symbol or highlight the line number to indicate a comment. By the way this editor looks a bit similar to the editor my brother is using, which is called Sublime Text 2. |