Zesterer's Text Editor
ZTE is a personal project. I grew frustrated with existing text editors and wanted something that worked exactly as I liked. This is not designed to be a general-purpose text editor with lots of fancy bells and whistles - it's supposed to work as I want it to and no more besides.
.rs
.toml
.glsl
.ron
.md
.log
Within an editor pane, 'standard' non-modal keybindings apply:
Shift + arrow keys to select text
Ctrl + X
: Cut
Ctrl + C
: CopyCtrl + V
: PasteCtrl + D
: Duplicate line or selectionAlt + W/A/S/D
: Switch to the next editor pane in the given directionAlt + Shift + W/A/S/D
: Create a new editor pane in the given directionAlt + Q
: Close the current editor paneCtrl + O
: Open a file in a new buffer (or reuse an existing buffer if the file is already open)Ctrl + S
: Save the current bufferCtrl + N
: Create a new buffer (currently not useful until saving buffers with new names is implemented, use Ctrl + O
instead to create a new file)
Ctrl + B
: Switch the current editor pane to a new buffer
Ctrl + Q
: Close the current buffer (unsaved data will be lost)Esc
: Cancel the current action (or close the editor)