diff options
author | Ivan Tham | 2022-03-10 15:14:19 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-04-02 15:46:53 +0000 |
commit | ec21de08446656b9012c39db2db3d02c7ce3dc9c (patch) | |
tree | 80fe374adbffb6392dbd9e3d37fbf096bca204e1 /helix-core | |
parent | 8b91ecde40e95a8ba956881c95da60adbf98abb6 (diff) |
Add missing # back to test output
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/test.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/test.rs b/helix-core/src/test.rs index 345d9e9c..064ca8a3 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; } |