doc: wrote about tradeoff for undo functionality in README.md

This commit is contained in:
Hayden Hargreaves 2026-03-30 18:19:37 -07:00
parent 9960d5c4e2
commit ffad4f86f6

View File

@ -56,6 +56,16 @@
---
## Trade Offs
#### Undo Tree vs. Undo Stack
While the undo tree method that vim uses is powerful, I rarely find myself using it. A stack terminal-based
approach is more natural to "non-vim" users and much simpler to implement. Implementing a feature similar
to Vims undo tree would many times longer than a simple stack.
---
## 🎯 Features
### 🎭 Six Editor Modes