@ -4,12 +4,14 @@
use crate ::{
use crate ::{
graphemes , movement ::Direction , Range , Rope , RopeGraphemes , Selection , Tendril , Transaction ,
graphemes , movement ::Direction , Range , Rope , RopeGraphemes , Selection , Tendril , Transaction ,
} ;
} ;
use std ::collections ::HashMap ;
use log ::debug ;
use log ::debug ;
use smallvec ::SmallVec ;
use smallvec ::SmallVec ;
// Heavily based on https://github.com/codemirror/closebrackets/
// Heavily based on https://github.com/codemirror/closebrackets/
pub const PAIRS: & [ ( char , char ) ] = & [
pub const DEFAULT_ PAIRS: & [ ( char , char ) ] = & [
( '(' , ')' ) ,
( '(' , ')' ) ,
( '{' , '}' ) ,
( '{' , '}' ) ,
( '[' , ']' ) ,
( '[' , ']' ) ,
@ -18,9 +20,95 @@ pub const PAIRS: &[(char, char)] = &[
( '`' , '`' ) ,
( '`' , '`' ) ,
] ;
] ;
// [TODO] build this dynamically in language config. see #992
/// The type that represents the collection of auto pairs,
const OPEN_BEFORE : & str = "([{'\":;,> \n\r\u{000B}\u{000C}\u{0085}\u{2028}\u{2029}" ;
/// keyed by the opener.
const CLOSE_BEFORE : & str = ")]}'\":;,> \n\r\u{000B}\u{000C}\u{0085}\u{2028}\u{2029}" ; // includes space and newlines
#[ derive(Debug, Clone) ]
pub struct AutoPairs ( HashMap < char , Pair > ) ;
/// Represents the config for a particular pairing.
#[ derive(Debug, Clone, Copy) ]
pub struct Pair {
pub open : char ,
pub close : char ,
}
impl Pair {
/// true if open == close
pub fn same ( & self ) -> bool {
self . open = = self . close
}
/// true if all of the pair's conditions hold for the given document and range
pub fn should_close ( & self , doc : & Rope , range : & Range ) -> bool {
let mut should_close = Self ::next_is_not_alpha ( doc , range ) ;
if self . same ( ) {
should_close & = Self ::prev_is_not_alpha ( doc , range ) ;
}
should_close
}
pub fn next_is_not_alpha ( doc : & Rope , range : & Range ) -> bool {
let cursor = range . cursor ( doc . slice ( .. ) ) ;
let next_char = doc . get_char ( cursor ) ;
next_char . map ( | c | ! c . is_alphanumeric ( ) ) . unwrap_or ( true )
}
pub fn prev_is_not_alpha ( doc : & Rope , range : & Range ) -> bool {
let cursor = range . cursor ( doc . slice ( .. ) ) ;
let prev_char = prev_char ( doc , cursor ) ;
prev_char . map ( | c | ! c . is_alphanumeric ( ) ) . unwrap_or ( true )
}
}
impl From < & ( char , char ) > for Pair {
fn from ( & ( open , close ) : & ( char , char ) ) -> Self {
Self { open , close }
}
}
impl From < ( & char , & char ) > for Pair {
fn from ( ( open , close ) : ( & char , & char ) ) -> Self {
Self {
open : * open ,
close : * close ,
}
}
}
impl AutoPairs {
/// Make a new AutoPairs set with the given pairs and default conditions.
pub fn new < ' a , V : ' a , A > ( pairs : V ) -> Self
where
V : IntoIterator < Item = A > ,
A : Into < Pair > ,
{
let mut auto_pairs = HashMap ::new ( ) ;
for pair in pairs . into_iter ( ) {
let auto_pair = pair . into ( ) ;
auto_pairs . insert ( auto_pair . open , auto_pair ) ;
if auto_pair . open ! = auto_pair . close {
auto_pairs . insert ( auto_pair . close , auto_pair ) ;
}
}
Self ( auto_pairs )
}
pub fn get ( & self , ch : char ) -> Option < & Pair > {
self . 0. get ( & ch )
}
}
impl Default for AutoPairs {
fn default ( ) -> Self {
AutoPairs ::new ( DEFAULT_PAIRS . iter ( ) )
}
}
// insert hook:
// insert hook:
// Fn(doc, selection, char) => Option<Transaction>
// Fn(doc, selection, char) => Option<Transaction>
@ -36,21 +124,17 @@ const CLOSE_BEFORE: &str = ")]}'\":;,> \n\r\u{000B}\u{000C}\u{0085}\u{2028}\u{20
// middle of triple quotes, and more exotic pairs like Jinja's {% %}
// middle of triple quotes, and more exotic pairs like Jinja's {% %}
#[ must_use ]
#[ must_use ]
pub fn hook ( doc : & Rope , selection : & Selection , ch : char ) -> Option < Transaction > {
pub fn hook ( doc : & Rope , selection : & Selection , ch : char , pairs : & AutoPairs ) -> Option < Transaction > {
debug ! ( "autopairs hook selection: {:#?}" , selection ) ;
debug ! ( "autopairs hook selection: {:#?}" , selection ) ;
for & ( open , close ) in PAIRS {
if let Some ( pair ) = pairs . get ( ch ) {
if open = = ch {
if pair . same ( ) {
if open = = close {
return Some ( handle_same ( doc , selection , pair ) ) ;
return Some ( handle_same ( doc , selection , open , CLOSE_BEFORE , OPEN_BEFORE ) ) ;
} else if pair . open = = ch {
} else {
return Some ( handle_open ( doc , selection , pair ) ) ;
return Some ( handle_open ( doc , selection , open , close , CLOSE_BEFORE ) ) ;
} else if pair . close = = ch {
}
}
if close = = ch {
// && char_at pos == close
// && char_at pos == close
return Some ( handle_close ( doc , selection , open, close ) ) ;
return Some ( handle_close ( doc , selection , pair ) ) ;
}
}
}
}
@ -196,13 +280,7 @@ fn get_next_range(
Range ::new ( end_anchor , end_head )
Range ::new ( end_anchor , end_head )
}
}
fn handle_open (
fn handle_open ( doc : & Rope , selection : & Selection , pair : & Pair ) -> Transaction {
doc : & Rope ,
selection : & Selection ,
open : char ,
close : char ,
close_before : & str ,
) -> Transaction {
let mut end_ranges = SmallVec ::with_capacity ( selection . len ( ) ) ;
let mut end_ranges = SmallVec ::with_capacity ( selection . len ( ) ) ;
let mut offs = 0 ;
let mut offs = 0 ;
@ -212,22 +290,21 @@ fn handle_open(
let len_inserted ;
let len_inserted ;
let change = match next_char {
let change = match next_char {
Some ( ch) if ! close_before . contains ( ch ) = > {
Some ( _) if ! pair . should_close ( doc , start_range ) = > {
len_inserted = open. len_utf8 ( ) ;
len_inserted = pair. open. len_utf8 ( ) ;
let mut tendril = Tendril ::new ( ) ;
let mut tendril = Tendril ::new ( ) ;
tendril . push ( open) ;
tendril . push ( pair. open) ;
( cursor , cursor , Some ( tendril ) )
( cursor , cursor , Some ( tendril ) )
}
}
// None | Some(ch) if close_before.contains(ch) => {}
_ = > {
_ = > {
// insert open & close
// insert open & close
let pair = Tendril ::from_iter ( [ open, close ] ) ;
let pair _str = Tendril ::from_iter ( [ pair. open, pair . close ] ) ;
len_inserted = open. len_utf8 ( ) + close . len_utf8 ( ) ;
len_inserted = pair. open. len_utf8 ( ) + pair . close . len_utf8 ( ) ;
( cursor , cursor , Some ( pair ) )
( cursor , cursor , Some ( pair _str ) )
}
}
} ;
} ;
let next_range = get_next_range ( doc , start_range , offs , open, len_inserted ) ;
let next_range = get_next_range ( doc , start_range , offs , pair. open, len_inserted ) ;
end_ranges . push ( next_range ) ;
end_ranges . push ( next_range ) ;
offs + = len_inserted ;
offs + = len_inserted ;
@ -239,7 +316,7 @@ fn handle_open(
t
t
}
}
fn handle_close ( doc : & Rope , selection : & Selection , _open: char , close : cha r) -> Transaction {
fn handle_close ( doc : & Rope , selection : & Selection , pair: & Pai r) -> Transaction {
let mut end_ranges = SmallVec ::with_capacity ( selection . len ( ) ) ;
let mut end_ranges = SmallVec ::with_capacity ( selection . len ( ) ) ;
let mut offs = 0 ;
let mut offs = 0 ;
@ -249,17 +326,17 @@ fn handle_close(doc: &Rope, selection: &Selection, _open: char, close: char) ->
let next_char = doc . get_char ( cursor ) ;
let next_char = doc . get_char ( cursor ) ;
let mut len_inserted = 0 ;
let mut len_inserted = 0 ;
let change = if next_char = = Some ( close) {
let change = if next_char = = Some ( pair. close) {
// return transaction that moves past close
// return transaction that moves past close
( cursor , cursor , None ) // no-op
( cursor , cursor , None ) // no-op
} else {
} else {
len_inserted + = close. len_utf8 ( ) ;
len_inserted + = pair. close. len_utf8 ( ) ;
let mut tendril = Tendril ::new ( ) ;
let mut tendril = Tendril ::new ( ) ;
tendril . push ( close) ;
tendril . push ( pair. close) ;
( cursor , cursor , Some ( tendril ) )
( cursor , cursor , Some ( tendril ) )
} ;
} ;
let next_range = get_next_range ( doc , start_range , offs , close, len_inserted ) ;
let next_range = get_next_range ( doc , start_range , offs , pair. close, len_inserted ) ;
end_ranges . push ( next_range ) ;
end_ranges . push ( next_range ) ;
offs + = len_inserted ;
offs + = len_inserted ;
@ -272,13 +349,7 @@ fn handle_close(doc: &Rope, selection: &Selection, _open: char, close: char) ->
}
}
/// handle cases where open and close is the same, or in triples ("""docstring""")
/// handle cases where open and close is the same, or in triples ("""docstring""")
fn handle_same (
fn handle_same ( doc : & Rope , selection : & Selection , pair : & Pair ) -> Transaction {
doc : & Rope ,
selection : & Selection ,
token : char ,
close_before : & str ,
open_before : & str ,
) -> Transaction {
let mut end_ranges = SmallVec ::with_capacity ( selection . len ( ) ) ;
let mut end_ranges = SmallVec ::with_capacity ( selection . len ( ) ) ;
let mut offs = 0 ;
let mut offs = 0 ;
@ -286,30 +357,26 @@ fn handle_same(
let transaction = Transaction ::change_by_selection ( doc , selection , | start_range | {
let transaction = Transaction ::change_by_selection ( doc , selection , | start_range | {
let cursor = start_range . cursor ( doc . slice ( .. ) ) ;
let cursor = start_range . cursor ( doc . slice ( .. ) ) ;
let mut len_inserted = 0 ;
let mut len_inserted = 0 ;
let next_char = doc . get_char ( cursor ) ;
let next_char = doc . get_char ( cursor ) ;
let prev_char = prev_char ( doc , cursor ) ;
let change = if next_char = = Some ( tok en) {
let change = if next_char = = Some ( pair. op en) {
// return transaction that moves past close
// return transaction that moves past close
( cursor , cursor , None ) // no-op
( cursor , cursor , None ) // no-op
} else {
} else {
let mut pair = Tendril ::new ( ) ;
let mut pair _str = Tendril ::new ( ) ;
pair . push ( tok en) ;
pair _str. push ( pair . op en) ;
// for equal pairs, don't insert both open and close if either
// for equal pairs, don't insert both open and close if either
// side has a non-pair char
// side has a non-pair char
if ( next_char . is_none ( ) | | close_before . contains ( next_char . unwrap ( ) ) )
if pair . should_close ( doc , start_range ) {
& & ( prev_char . is_none ( ) | | open_before . contains ( prev_char . unwrap ( ) ) )
pair_str . push ( pair . close ) ;
{
pair . push ( token ) ;
}
}
len_inserted + = pair . len ( ) ;
len_inserted + = pair _str . len ( ) ;
( cursor , cursor , Some ( pair ) )
( cursor , cursor , Some ( pair _str ) )
} ;
} ;
let next_range = get_next_range ( doc , start_range , offs , tok en, len_inserted ) ;
let next_range = get_next_range ( doc , start_range , offs , pair. op en, len_inserted ) ;
end_ranges . push ( next_range ) ;
end_ranges . push ( next_range ) ;
offs + = len_inserted ;
offs + = len_inserted ;
@ -329,21 +396,23 @@ mod test {
const LINE_END : & str = crate ::DEFAULT_LINE_ENDING . as_str ( ) ;
const LINE_END : & str = crate ::DEFAULT_LINE_ENDING . as_str ( ) ;
fn differing_pairs ( ) -> impl Iterator < Item = & ' static ( char , char ) > {
fn differing_pairs ( ) -> impl Iterator < Item = & ' static ( char , char ) > {
PAIRS. iter ( ) . filter ( | ( open , close ) | open ! = close )
DEFAULT_ PAIRS. iter ( ) . filter ( | ( open , close ) | open ! = close )
}
}
fn matching_pairs ( ) -> impl Iterator < Item = & ' static ( char , char ) > {
fn matching_pairs ( ) -> impl Iterator < Item = & ' static ( char , char ) > {
PAIRS. iter ( ) . filter ( | ( open , close ) | open = = close )
DEFAULT_ PAIRS. iter ( ) . filter ( | ( open , close ) | open = = close )
}
}
fn test_hooks (
fn test_hooks (
in_doc : & Rope ,
in_doc : & Rope ,
in_sel : & Selection ,
in_sel : & Selection ,
ch : char ,
ch : char ,
pairs : & [ ( char , char ) ] ,
expected_doc : & Rope ,
expected_doc : & Rope ,
expected_sel : & Selection ,
expected_sel : & Selection ,
) {
) {
let trans = hook ( in_doc , in_sel , ch ) . unwrap ( ) ;
let pairs = AutoPairs ::new ( pairs . iter ( ) ) ;
let trans = hook ( in_doc , in_sel , ch , & pairs ) . unwrap ( ) ;
let mut actual_doc = in_doc . clone ( ) ;
let mut actual_doc = in_doc . clone ( ) ;
assert! ( trans . apply ( & mut actual_doc ) ) ;
assert! ( trans . apply ( & mut actual_doc ) ) ;
assert_eq! ( expected_doc , & actual_doc ) ;
assert_eq! ( expected_doc , & actual_doc ) ;
@ -353,7 +422,8 @@ mod test {
fn test_hooks_with_pairs < I , F , R > (
fn test_hooks_with_pairs < I , F , R > (
in_doc : & Rope ,
in_doc : & Rope ,
in_sel : & Selection ,
in_sel : & Selection ,
pairs : I ,
test_pairs : I ,
pairs : & [ ( char , char ) ] ,
get_expected_doc : F ,
get_expected_doc : F ,
actual_sel : & Selection ,
actual_sel : & Selection ,
) where
) where
@ -362,11 +432,12 @@ mod test {
R : Into < Rope > ,
R : Into < Rope > ,
Rope : From < R > ,
Rope : From < R > ,
{
{
pairs. into_iter ( ) . for_each ( | ( open , close ) | {
test_ pairs. into_iter ( ) . for_each ( | ( open , close ) | {
test_hooks (
test_hooks (
in_doc ,
in_doc ,
in_sel ,
in_sel ,
* open ,
* open ,
pairs ,
& Rope ::from ( get_expected_doc ( * open , * close ) ) ,
& Rope ::from ( get_expected_doc ( * open , * close ) ) ,
actual_sel ,
actual_sel ,
)
)
@ -381,7 +452,8 @@ mod test {
test_hooks_with_pairs (
test_hooks_with_pairs (
& Rope ::from ( LINE_END ) ,
& Rope ::from ( LINE_END ) ,
& Selection ::single ( 1 , 0 ) ,
& Selection ::single ( 1 , 0 ) ,
PAIRS ,
DEFAULT_PAIRS ,
DEFAULT_PAIRS ,
| open , close | format! ( "{}{}{}" , open , close , LINE_END ) ,
| open , close | format! ( "{}{}{}" , open , close , LINE_END ) ,
& Selection ::single ( 2 , 1 ) ,
& Selection ::single ( 2 , 1 ) ,
) ;
) ;
@ -391,7 +463,8 @@ mod test {
test_hooks_with_pairs (
test_hooks_with_pairs (
& empty_doc ,
& empty_doc ,
& Selection ::single ( empty_doc . len_chars ( ) , LINE_END . len ( ) ) ,
& Selection ::single ( empty_doc . len_chars ( ) , LINE_END . len ( ) ) ,
PAIRS ,
DEFAULT_PAIRS ,
DEFAULT_PAIRS ,
| open , close | {
| open , close | {
format! (
format! (
"{line_end}{open}{close}{line_end}" ,
"{line_end}{open}{close}{line_end}" ,
@ -406,13 +479,16 @@ mod test {
#[ test ]
#[ test ]
fn test_insert_before_multi_code_point_graphemes ( ) {
fn test_insert_before_multi_code_point_graphemes ( ) {
test_hooks_with_pairs (
for ( _ , close ) in differing_pairs ( ) {
& Rope ::from ( format! ( "hello 👨👩👧👦 goodbye{}" , LINE_END ) ) ,
test_hooks (
& Selection ::single ( 13 , 6 ) ,
& Rope ::from ( format! ( "hello 👨👩👧👦 goodbye{}" , LINE_END ) ) ,
PAIRS ,
& Selection ::single ( 13 , 6 ) ,
| open , _ | format! ( "hello {}👨👩👧👦 goodbye{}" , open , LINE_END ) ,
* close ,
& Selection ::single ( 14 , 7 ) ,
DEFAULT_PAIRS ,
) ;
& Rope ::from ( format! ( "hello {}👨👩👧👦 goodbye{}" , close , LINE_END ) ) ,
& Selection ::single ( 14 , 7 ) ,
) ;
}
}
}
#[ test ]
#[ test ]
@ -420,7 +496,8 @@ mod test {
test_hooks_with_pairs (
test_hooks_with_pairs (
& Rope ::from ( LINE_END ) ,
& Rope ::from ( LINE_END ) ,
& Selection ::single ( LINE_END . len ( ) , LINE_END . len ( ) ) ,
& Selection ::single ( LINE_END . len ( ) , LINE_END . len ( ) ) ,
PAIRS ,
DEFAULT_PAIRS ,
DEFAULT_PAIRS ,
| open , close | format! ( "{}{}{}" , LINE_END , open , close ) ,
| open , close | format! ( "{}{}{}" , LINE_END , open , close ) ,
& Selection ::single ( LINE_END . len ( ) + 1 , LINE_END . len ( ) + 1 ) ,
& Selection ::single ( LINE_END . len ( ) + 1 , LINE_END . len ( ) + 1 ) ,
) ;
) ;
@ -428,7 +505,8 @@ mod test {
test_hooks_with_pairs (
test_hooks_with_pairs (
& Rope ::from ( format! ( "foo{}" , LINE_END ) ) ,
& Rope ::from ( format! ( "foo{}" , LINE_END ) ) ,
& Selection ::single ( 3 + LINE_END . len ( ) , 3 + LINE_END . len ( ) ) ,
& Selection ::single ( 3 + LINE_END . len ( ) , 3 + LINE_END . len ( ) ) ,
PAIRS ,
DEFAULT_PAIRS ,
DEFAULT_PAIRS ,
| open , close | format! ( "foo{}{}{}" , LINE_END , open , close ) ,
| open , close | format! ( "foo{}{}{}" , LINE_END , open , close ) ,
& Selection ::single ( LINE_END . len ( ) + 4 , LINE_END . len ( ) + 4 ) ,
& Selection ::single ( LINE_END . len ( ) + 4 , LINE_END . len ( ) + 4 ) ,
) ;
) ;
@ -442,7 +520,8 @@ mod test {
& Rope ::from ( format! ( "{line_end}{line_end}" , line_end = LINE_END ) ) ,
& Rope ::from ( format! ( "{line_end}{line_end}" , line_end = LINE_END ) ) ,
// before inserting the pair, the cursor covers all of both empty lines
// before inserting the pair, the cursor covers all of both empty lines
& Selection ::single ( 0 , LINE_END . len ( ) * 2 ) ,
& Selection ::single ( 0 , LINE_END . len ( ) * 2 ) ,
PAIRS ,
DEFAULT_PAIRS ,
DEFAULT_PAIRS ,
| open , close | {
| open , close | {
format! (
format! (
"{line_end}{open}{close}{line_end}" ,
"{line_end}{open}{close}{line_end}" ,
@ -467,7 +546,8 @@ mod test {
smallvec ! ( Range ::new ( 1 , 0 ) , Range ::new ( 2 , 1 ) , Range ::new ( 3 , 2 ) , ) ,
smallvec ! ( Range ::new ( 1 , 0 ) , Range ::new ( 2 , 1 ) , Range ::new ( 3 , 2 ) , ) ,
0 ,
0 ,
) ,
) ,
PAIRS ,
DEFAULT_PAIRS ,
DEFAULT_PAIRS ,
| open , close | {
| open , close | {
format! (
format! (
"{open}{close}\n{open}{close}\n{open}{close}\n" ,
"{open}{close}\n{open}{close}\n{open}{close}\n" ,
@ -489,6 +569,7 @@ mod test {
& Rope ::from ( "foo\n" ) ,
& Rope ::from ( "foo\n" ) ,
& Selection ::single ( 2 , 4 ) ,
& Selection ::single ( 2 , 4 ) ,
differing_pairs ( ) ,
differing_pairs ( ) ,
DEFAULT_PAIRS ,
| open , close | format! ( "foo{}{}\n" , open , close ) ,
| open , close | format! ( "foo{}{}\n" , open , close ) ,
& Selection ::single ( 2 , 5 ) ,
& Selection ::single ( 2 , 5 ) ,
) ;
) ;
@ -501,6 +582,7 @@ mod test {
& Rope ::from ( format! ( "foo{}" , LINE_END ) ) ,
& Rope ::from ( format! ( "foo{}" , LINE_END ) ) ,
& Selection ::single ( 3 , 3 + LINE_END . len ( ) ) ,
& Selection ::single ( 3 , 3 + LINE_END . len ( ) ) ,
differing_pairs ( ) ,
differing_pairs ( ) ,
DEFAULT_PAIRS ,
| open , close | format! ( "foo{}{}{}" , open , close , LINE_END ) ,
| open , close | format! ( "foo{}{}{}" , open , close , LINE_END ) ,
& Selection ::single ( 4 , 5 ) ,
& Selection ::single ( 4 , 5 ) ,
) ;
) ;
@ -518,6 +600,7 @@ mod test {
0 ,
0 ,
) ,
) ,
differing_pairs ( ) ,
differing_pairs ( ) ,
DEFAULT_PAIRS ,
| open , close | {
| open , close | {
format! (
format! (
"foo{open}{close}\nfoo{open}{close}\nfoo{open}{close}\n" ,
"foo{open}{close}\nfoo{open}{close}\nfoo{open}{close}\n" ,
@ -535,13 +618,14 @@ mod test {
/// ([)] -> insert ) -> ()[]
/// ([)] -> insert ) -> ()[]
#[ test ]
#[ test ]
fn test_insert_close_inside_pair ( ) {
fn test_insert_close_inside_pair ( ) {
for ( open , close ) in PAIRS {
for ( open , close ) in DEFAULT_ PAIRS {
let doc = Rope ::from ( format! ( "{}{}{}" , open , close , LINE_END ) ) ;
let doc = Rope ::from ( format! ( "{}{}{}" , open , close , LINE_END ) ) ;
test_hooks (
test_hooks (
& doc ,
& doc ,
& Selection ::single ( 2 , 1 ) ,
& Selection ::single ( 2 , 1 ) ,
* close ,
* close ,
DEFAULT_PAIRS ,
& doc ,
& doc ,
& Selection ::single ( 2 + LINE_END . len ( ) , 2 ) ,
& Selection ::single ( 2 + LINE_END . len ( ) , 2 ) ,
) ;
) ;
@ -551,13 +635,14 @@ mod test {
/// [(]) -> append ) -> [()]
/// [(]) -> append ) -> [()]
#[ test ]
#[ test ]
fn test_append_close_inside_pair ( ) {
fn test_append_close_inside_pair ( ) {
for ( open , close ) in PAIRS {
for ( open , close ) in DEFAULT_ PAIRS {
let doc = Rope ::from ( format! ( "{}{}{}" , open , close , LINE_END ) ) ;
let doc = Rope ::from ( format! ( "{}{}{}" , open , close , LINE_END ) ) ;
test_hooks (
test_hooks (
& doc ,
& doc ,
& Selection ::single ( 0 , 2 ) ,
& Selection ::single ( 0 , 2 ) ,
* close ,
* close ,
DEFAULT_PAIRS ,
& doc ,
& doc ,
& Selection ::single ( 0 , 2 + LINE_END . len ( ) ) ,
& Selection ::single ( 0 , 2 + LINE_END . len ( ) ) ,
) ;
) ;
@ -579,14 +664,14 @@ mod test {
0 ,
0 ,
) ;
) ;
for ( open , close ) in PAIRS {
for ( open , close ) in DEFAULT_ PAIRS {
let doc = Rope ::from ( format! (
let doc = Rope ::from ( format! (
"{open}{close}\n{open}{close}\n{open}{close}\n" ,
"{open}{close}\n{open}{close}\n{open}{close}\n" ,
open = open ,
open = open ,
close = close
close = close
) ) ;
) ) ;
test_hooks ( & doc , & sel , * close , & doc , & expected_sel ) ;
test_hooks ( & doc , & sel , * close , DEFAULT_PAIRS , & doc , & expected_sel ) ;
}
}
}
}
@ -605,14 +690,14 @@ mod test {
0 ,
0 ,
) ;
) ;
for ( open , close ) in PAIRS {
for ( open , close ) in DEFAULT_ PAIRS {
let doc = Rope ::from ( format! (
let doc = Rope ::from ( format! (
"{open}{close}\n{open}{close}\n{open}{close}\n" ,
"{open}{close}\n{open}{close}\n{open}{close}\n" ,
open = open ,
open = open ,
close = close
close = close
) ) ;
) ) ;
test_hooks ( & doc , & sel , * close , & doc , & expected_sel ) ;
test_hooks ( & doc , & sel , * close , DEFAULT_PAIRS , & doc , & expected_sel ) ;
}
}
}
}
@ -630,7 +715,14 @@ mod test {
close = close
close = close
) ) ;
) ) ;
test_hooks ( & doc , & sel , * open , & expected_doc , & expected_sel ) ;
test_hooks (
& doc ,
& sel ,
* open ,
DEFAULT_PAIRS ,
& expected_doc ,
& expected_sel ,
) ;
}
}
}
}
@ -648,7 +740,14 @@ mod test {
close = close
close = close
) ) ;
) ) ;
test_hooks ( & doc , & sel , * open , & expected_doc , & expected_sel ) ;
test_hooks (
& doc ,
& sel ,
* open ,
DEFAULT_PAIRS ,
& expected_doc ,
& expected_sel ,
) ;
}
}
}
}
@ -667,7 +766,14 @@ mod test {
outer_open , inner_open , inner_close , outer_close
outer_open , inner_open , inner_close , outer_close
) ) ;
) ) ;
test_hooks ( & doc , & sel , * inner_open , & expected_doc , & expected_sel ) ;
test_hooks (
& doc ,
& sel ,
* inner_open ,
DEFAULT_PAIRS ,
& expected_doc ,
& expected_sel ,
) ;
}
}
}
}
}
}
@ -687,7 +793,14 @@ mod test {
outer_open , inner_open , inner_close , outer_close
outer_open , inner_open , inner_close , outer_close
) ) ;
) ) ;
test_hooks ( & doc , & sel , * inner_open , & expected_doc , & expected_sel ) ;
test_hooks (
& doc ,
& sel ,
* inner_open ,
DEFAULT_PAIRS ,
& expected_doc ,
& expected_sel ,
) ;
}
}
}
}
}
}
@ -698,7 +811,8 @@ mod test {
test_hooks_with_pairs (
test_hooks_with_pairs (
& Rope ::from ( "word" ) ,
& Rope ::from ( "word" ) ,
& Selection ::single ( 1 , 0 ) ,
& Selection ::single ( 1 , 0 ) ,
PAIRS ,
DEFAULT_PAIRS ,
DEFAULT_PAIRS ,
| open , _ | format! ( "{}word" , open ) ,
| open , _ | format! ( "{}word" , open ) ,
& Selection ::single ( 2 , 1 ) ,
& Selection ::single ( 2 , 1 ) ,
)
)
@ -710,7 +824,8 @@ mod test {
test_hooks_with_pairs (
test_hooks_with_pairs (
& Rope ::from ( "word" ) ,
& Rope ::from ( "word" ) ,
& Selection ::single ( 3 , 0 ) ,
& Selection ::single ( 3 , 0 ) ,
PAIRS ,
DEFAULT_PAIRS ,
DEFAULT_PAIRS ,
| open , _ | format! ( "{}word" , open ) ,
| open , _ | format! ( "{}word" , open ) ,
& Selection ::single ( 4 , 1 ) ,
& Selection ::single ( 4 , 1 ) ,
)
)
@ -722,10 +837,17 @@ mod test {
let sel = Selection ::single ( 0 , 4 ) ;
let sel = Selection ::single ( 0 , 4 ) ;
let expected_sel = Selection ::single ( 0 , 5 ) ;
let expected_sel = Selection ::single ( 0 , 5 ) ;
for ( _ , close ) in PAIRS {
for ( _ , close ) in DEFAULT_ PAIRS {
let doc = Rope ::from ( "word" ) ;
let doc = Rope ::from ( "word" ) ;
let expected_doc = Rope ::from ( format! ( "wor{}d" , close ) ) ;
let expected_doc = Rope ::from ( format! ( "wor{}d" , close ) ) ;
test_hooks ( & doc , & sel , * close , & expected_doc , & expected_sel ) ;
test_hooks (
& doc ,
& sel ,
* close ,
DEFAULT_PAIRS ,
& expected_doc ,
& expected_sel ,
) ;
}
}
}
}
@ -736,6 +858,7 @@ mod test {
& Rope ::from ( "foo word" ) ,
& Rope ::from ( "foo word" ) ,
& Selection ::single ( 7 , 3 ) ,
& Selection ::single ( 7 , 3 ) ,
differing_pairs ( ) ,
differing_pairs ( ) ,
DEFAULT_PAIRS ,
| open , close | format! ( "foo{}{} word" , open , close ) ,
| open , close | format! ( "foo{}{} word" , open , close ) ,
& Selection ::single ( 9 , 4 ) ,
& Selection ::single ( 9 , 4 ) ,
)
)
@ -749,6 +872,7 @@ mod test {
& Rope ::from ( format! ( "foo{}{} word{}" , open , close , LINE_END ) ) ,
& Rope ::from ( format! ( "foo{}{} word{}" , open , close , LINE_END ) ) ,
& Selection ::single ( 9 , 4 ) ,
& Selection ::single ( 9 , 4 ) ,
* close ,
* close ,
DEFAULT_PAIRS ,
& Rope ::from ( format! ( "foo{}{} word{}" , open , close , LINE_END ) ) ,
& Rope ::from ( format! ( "foo{}{} word{}" , open , close , LINE_END ) ) ,
& Selection ::single ( 9 , 5 ) ,
& Selection ::single ( 9 , 5 ) ,
)
)
@ -771,6 +895,7 @@ mod test {
& doc ,
& doc ,
& sel ,
& sel ,
differing_pairs ( ) ,
differing_pairs ( ) ,
DEFAULT_PAIRS ,
| open , close | format! ( "word{}{}{}" , open , close , LINE_END ) ,
| open , close | format! ( "word{}{}{}" , open , close , LINE_END ) ,
& expected_sel ,
& expected_sel ,
) ;
) ;
@ -779,8 +904,34 @@ mod test {
& doc ,
& doc ,
& sel ,
& sel ,
matching_pairs ( ) ,
matching_pairs ( ) ,
DEFAULT_PAIRS ,
| open , _ | format! ( "word{}{}" , open , LINE_END ) ,
| open , _ | format! ( "word{}{}" , open , LINE_END ) ,
& expected_sel ,
& expected_sel ,
) ;
) ;
}
}
#[ test ]
fn test_configured_pairs ( ) {
let test_pairs = & [ ( '`' , ':' ) , ( '+' , '-' ) ] ;
test_hooks_with_pairs (
& Rope ::from ( LINE_END ) ,
& Selection ::single ( 1 , 0 ) ,
test_pairs ,
test_pairs ,
| open , close | format! ( "{}{}{}" , open , close , LINE_END ) ,
& Selection ::single ( 2 , 1 ) ,
) ;
let doc = Rope ::from ( format! ( "foo`: word{}" , LINE_END ) ) ;
test_hooks (
& doc ,
& Selection ::single ( 9 , 4 ) ,
':' ,
test_pairs ,
& doc ,
& Selection ::single ( 9 , 5 ) ,
)
}
}
}