mirror of
https://github.com/chylex/IntelliJ-AceJump.git
synced 2025-04-09 17:15:43 +02:00
Change priority order of two-character tags
This commit is contained in:
parent
b13d629046
commit
2681d9901f
@ -7,13 +7,6 @@ import org.acejump.config.AceSettings
|
||||
* with repeated keys (ex. FF, JJ) or adjacent keys (ex. GH, UJ).
|
||||
*/
|
||||
internal object KeyLayoutCache {
|
||||
/**
|
||||
* Sorts tags according to current keyboard layout settings, and some predefined rules that force tags with digits, and tags with two
|
||||
* keys far apart, to be sorted after other (easier to type) tags.
|
||||
*/
|
||||
lateinit var tagOrder: Comparator<String>
|
||||
private set
|
||||
|
||||
/**
|
||||
* Returns all possible two key tags, pre-sorted according to [tagOrder].
|
||||
*/
|
||||
@ -24,7 +17,7 @@ internal object KeyLayoutCache {
|
||||
* Called before any lazily initialized properties are used, to ensure that they are initialized even if the settings are missing.
|
||||
*/
|
||||
fun ensureInitialized(settings: AceSettings) {
|
||||
if (!::tagOrder.isInitialized) {
|
||||
if (!::allPossibleTagsLowercase.isInitialized) {
|
||||
reset(settings)
|
||||
}
|
||||
}
|
||||
@ -33,15 +26,16 @@ internal object KeyLayoutCache {
|
||||
* Re-initializes cached data according to updated settings.
|
||||
*/
|
||||
fun reset(settings: AceSettings) {
|
||||
tagOrder = compareBy(
|
||||
String::length,
|
||||
settings.layout.priority(String::last)
|
||||
)
|
||||
|
||||
@Suppress("ConvertLambdaToReference")
|
||||
val allSuffixChars = processCharList(settings.allowedChars).ifEmpty { processCharList(settings.layout.allChars).toList() }
|
||||
val allPrefixChars = processCharList(settings.prefixChars).filterNot(allSuffixChars::contains).plus("")
|
||||
|
||||
val tagOrder = compareBy(
|
||||
String::length,
|
||||
{ if (it.length == 1) Int.MIN_VALUE else allPrefixChars.indexOf(it.first().toString()) },
|
||||
settings.layout.priority(String::last)
|
||||
)
|
||||
|
||||
allPossibleTagsLowercase = allSuffixChars
|
||||
.flatMap { suffix -> allPrefixChars.map { prefix -> "$prefix$suffix" } }
|
||||
.sortedWith(tagOrder)
|
||||
|
Loading…
Reference in New Issue
Block a user