From ffad4f86f6cd4cabc5c505e48f5047897ba170f5 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Mon, 30 Mar 2026 18:19:37 -0700 Subject: [PATCH] doc: wrote about tradeoff for undo functionality in README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index e92b5d1..fa4c39a 100644 --- a/README.md +++ b/README.md @@ -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