parent
badfff0f46
commit
a2fa49aafb
2 changed files with 5 additions and 2 deletions
|
@ -70,10 +70,13 @@ private fun findPattern(string: String, fromIndex: Int): FindCharsResult {
|
||||||
result.matchType = matchType
|
result.matchType = matchType
|
||||||
result.start = Math.max(0, i - finder.searchPrefixWidth)
|
result.start = Math.max(0, i - finder.searchPrefixWidth)
|
||||||
findEndOfPattern(string, result, finder.pattern)
|
findEndOfPattern(string, result, finder.pattern)
|
||||||
|
if (result.start + finder.searchPrefixWidth <= i + 1 && // The found result is actually triggered by the correct search character
|
||||||
|
result.end >= result.start) { // ...and we actually found a valid result
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ import org.junit.runners.Parameterized
|
||||||
class SpanUtilsTest {
|
class SpanUtilsTest {
|
||||||
@Test
|
@Test
|
||||||
fun matchesMixedSpans() {
|
fun matchesMixedSpans() {
|
||||||
val input = "one #one two @two three https://thr.ee/meh?foo=bar&wat=@at#hmm four #four five @five"
|
val input = "one #one two: @two three : https://thr.ee/meh?foo=bar&wat=@at#hmm four #four five @five"
|
||||||
val inputSpannable = FakeSpannable(input)
|
val inputSpannable = FakeSpannable(input)
|
||||||
highlightSpans(inputSpannable, 0xffffff)
|
highlightSpans(inputSpannable, 0xffffff)
|
||||||
val spans = inputSpannable.spans
|
val spans = inputSpannable.spans
|
||||||
|
|
Loading…
Reference in a new issue