Using the HarixOS Notepad App
Launch
notepad /path/to/file.txt — opens the file for editing. If the file doesn't exist, it will be created when saved.
Editor commands (line input)
Type lines normally to append them to the buffer.
:w — Save buffer to file.
:q — Quit without saving.
:wq or :x — Save and quit.
:p — Print current buffer to console.
:d <line> — Delete line number.
Example
notepad /notes/todo.txt
Enter text lines. Use :wq to save and exit.
Implementation