From cc68315a3fcda4ad02bd3d5c48f4dcad878fb8ec Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 25 Oct 2022 10:15:24 -0600 Subject: [PATCH] Disable character delete test until it can handle EGCs --- examples/editor-test/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/editor-test/src/main.rs b/examples/editor-test/src/main.rs index 03dfbcd..99c35f3 100644 --- a/examples/editor-test/src/main.rs +++ b/examples/editor-test/src/main.rs @@ -120,6 +120,7 @@ fn main() { assert_eq!(cursor, buffer.cursor()); } + /*TODO: Delete will remove whole EGC // Test delete of character { let cursor = buffer.cursor(); @@ -128,6 +129,7 @@ fn main() { buffer.action(TextAction::Delete); assert_eq!(cursor, buffer.cursor()); } + */ // Finally, normal insert of character buffer.action(TextAction::Insert(c));