work on improving parameter expansion logic

This commit is contained in:
2026-03-04 18:05:48 -05:00
parent 77a1dc740f
commit 7b5337367b
11 changed files with 702 additions and 64 deletions

View File

@@ -2885,6 +2885,8 @@ impl LineBuf {
Verb::Insert(string) => {
self.push_str(&string);
let graphemes = string.graphemes(true).count();
log::debug!("Inserted string: {string:?}, graphemes: {graphemes}");
log::debug!("buffer after insert: {:?}", self.buffer);
self.cursor.add(graphemes);
}
Verb::Indent => {