aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src
diff options
context:
space:
mode:
authorSkyler Hawthorne2022-06-24 12:39:07 +0000
committerSkyler Hawthorne2022-10-19 02:31:38 +0000
commitb8a07f7d15a10186fa2b481a3423c23f32d7d561 (patch)
treed64eee91a5f88c7e835b4ac9aafb3e1de1e0bdc6 /helix-core/src
parent69c9e44ef205a81c112dfb14d5f2e67e5ce9c300 (diff)
add conditional noop render back
It makes it much slower without stubbing this out
Diffstat (limited to 'helix-core/src')
-rw-r--r--helix-core/src/auto_pairs.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/helix-core/src/auto_pairs.rs b/helix-core/src/auto_pairs.rs
index ff680a77..edc404ac 100644
--- a/helix-core/src/auto_pairs.rs
+++ b/helix-core/src/auto_pairs.rs
@@ -7,7 +7,6 @@ use std::collections::HashMap;
use smallvec::SmallVec;
// Heavily based on https://github.com/codemirror/closebrackets/
-
pub const DEFAULT_PAIRS: &[(char, char)] = &[
('(', ')'),
('{', '}'),