From ec21de08446656b9012c39db2db3d02c7ce3dc9c Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Thu, 10 Mar 2022 23:14:19 +0800 Subject: [PATCH] Add missing # back to test output --- helix-core/src/test.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/helix-core/src/test.rs b/helix-core/src/test.rs index 345d9e9c8..064ca8a38 100644 --- a/helix-core/src/test.rs +++ b/helix-core/src/test.rs @@ -45,6 +45,7 @@ pub fn print(s: &str) -> (String, Selection) { Some('[') => (true, ']'), Some('(') => (false, ')'), Some(ch) => { + left.push('#'); left.push(ch); continue; }