Add curly single and double quotes to BRACKETS (#10971)
This commit is contained in:
parent
afe9049a0e
commit
69acf66cd8
1 changed files with 3 additions and 1 deletions
|
@ -9,11 +9,13 @@ use crate::Syntax;
|
|||
const MAX_PLAINTEXT_SCAN: usize = 10000;
|
||||
const MATCH_LIMIT: usize = 16;
|
||||
|
||||
pub const BRACKETS: [(char, char); 7] = [
|
||||
pub const BRACKETS: [(char, char); 9] = [
|
||||
('(', ')'),
|
||||
('{', '}'),
|
||||
('[', ']'),
|
||||
('<', '>'),
|
||||
('‘', '’'),
|
||||
('“', '”'),
|
||||
('«', '»'),
|
||||
('「', '」'),
|
||||
('(', ')'),
|
||||
|
|
Loading…
Add table
Reference in a new issue