mirror of https://github.com/helix-editor/helix
Add curly single and double quotes to BRACKETS (#10971)
parent
afe9049a0e
commit
69acf66cd8
|
@ -9,11 +9,13 @@ use crate::Syntax;
|
||||||
const MAX_PLAINTEXT_SCAN: usize = 10000;
|
const MAX_PLAINTEXT_SCAN: usize = 10000;
|
||||||
const MATCH_LIMIT: usize = 16;
|
const MATCH_LIMIT: usize = 16;
|
||||||
|
|
||||||
pub const BRACKETS: [(char, char); 7] = [
|
pub const BRACKETS: [(char, char); 9] = [
|
||||||
('(', ')'),
|
('(', ')'),
|
||||||
('{', '}'),
|
('{', '}'),
|
||||||
('[', ']'),
|
('[', ']'),
|
||||||
('<', '>'),
|
('<', '>'),
|
||||||
|
('‘', '’'),
|
||||||
|
('“', '”'),
|
||||||
('«', '»'),
|
('«', '»'),
|
||||||
('「', '」'),
|
('「', '」'),
|
||||||
('(', ')'),
|
('(', ')'),
|
||||||
|
|
Loading…
Reference in New Issue