dev.sphericalkat.sublimefuzzy.Constants.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sublime-fuzzy Show documentation
Show all versions of sublime-fuzzy Show documentation
Kotlin implementation of Sublime Text's fuzzy search algorithm
package dev.sphericalkat.sublimefuzzy
object Constants {
const val SEQUENTIAL_BONUS = 15
const val SEPARATOR_BONUS = 30
const val CAMEL_BONUS = 30
const val FIRST_LETTER_BONUS = 15
const val LEADING_LETTER_PENALTY = -5
const val MAX_LEADING_LETTER_PENALTY = -15
const val UNMATCHED_LETTER_PENALTY = -1
}