Hello everyone, I'm writing a simple text editor as an experiment, modeled mainly after 4coder which is my editor of choice.
When I say "modeled" I mean having 1% of its features, since I wouldn't be able to write something THAT awesome anyway XD
It's still very wonky, especially the undo/redo and clipboard functionality. It can only read/write ASCII, doesn't yet respect line endings and works only with mono-spaced fonts. If there's any interest in this, I'll try to address the most heavy bugs and set up a repository for the source. I'm writing it on Windows but it works on Linux too for the most part.
Ctrl + o to open a file browser
Ctrl + zero to switch between panels
Ctrl + space to set the marker
Ctrl + k to clear the current buffer
ArrowUp/ArrowDown/Return/Backspace/Esc/(type to filter) to navigate the file browser
Some basic text editing/navigation such as PgUp/PgDown/Home/End/Copy/Paste work for the most part (very buggy), but it's still missing others like Ctrl+arrows, etc.
I've temporarily mapped Ctrl + s to save the current buffer as "example.txt" in the current directory, instead of saving the actual opened file. That's to prevent any unwanted behavior on precious files.
EDIT: Last update Jan/19/2020
download from dropbox