diff options
author | Skyler Hawthorne | 2022-06-24 12:39:07 +0000 |
---|---|---|
committer | Skyler Hawthorne | 2022-10-19 02:31:38 +0000 |
commit | b8a07f7d15a10186fa2b481a3423c23f32d7d561 (patch) | |
tree | d64eee91a5f88c7e835b4ac9aafb3e1de1e0bdc6 /helix-core | |
parent | 69c9e44ef205a81c112dfb14d5f2e67e5ce9c300 (diff) |
add conditional noop render back
It makes it much slower without stubbing this out
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/auto_pairs.rs | 1 |
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)] = &[ ('(', ')'), ('{', '}'), |