mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Update morekeys for spanish n to forward slash
This commit is contained in:
parent
f795a7228e
commit
727db278ca
File diff suppressed because it is too large
Load Diff
@ -10,7 +10,7 @@ typealias MoreKeys = List<String>
|
||||
|
||||
val QwertySymbols = listOf(
|
||||
"qwertyuiop".toList(),
|
||||
"asdfghjklw".toList(),
|
||||
"asdfghjkl".toList() + listOf("r2_e1"),
|
||||
"zxcvbnm".toList()
|
||||
)
|
||||
|
||||
@ -43,6 +43,9 @@ private fun symsForCoord(keyCoordinate: KeyCoordinate): String {
|
||||
if(centeredCol < 0) return ""
|
||||
|
||||
val letter = row.getOrNull(centeredCol)
|
||||
if(letter == 'ñ') {
|
||||
println("It's ñ")
|
||||
}
|
||||
return if(letter != null) {
|
||||
"!text/qwertysyms_$letter"
|
||||
} else {
|
||||
|
@ -554,6 +554,8 @@
|
||||
"v": ":",
|
||||
"b": ";",
|
||||
"n": "!",
|
||||
"m": ["?", "/"]
|
||||
"m": ["?", "/"],
|
||||
|
||||
"r2_e1": "/"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user