⚠️ sued is in early stages of development. It does work, but it's not really very stable.
A text editor that works and is an editor.
sued is a line editor, similar to the venerable and standard ed text editor, just simpler and not nearly as powerful.
Syntax highlighting? Code analysis? Modal editing? Cursor positioning??
Who the hell cares? Just shut up and edit.
Written in Rust, because frick you, that's why.
~
, so sued does too.All commands start with ~
. Run ~
by itself to see a list of commands.
~save [filename]
- Write the buffer contents to the provided file name.~open [filename]
- Find or create a file and open its contents up in sued.~show
- Display the buffer contents, complete with line numbers.~replace [line]
- Interactively replace the chosen line's contents in the buffer.~delete [line]
- Immediately remove a line from the buffer.~run [command]
- Run the provided executable or shell builtin. Real executables will be prioritised over shell builtins.~exit
- Quit sued, discarding the buffer contents.~help
- Display some information about sued.