Prefs // Change default candidate keys amount to 6.
This commit is contained in:
parent
a83c91c738
commit
2289be50b6
|
@ -241,7 +241,7 @@ public enum KeyboardParser: Int, CaseIterable {
|
|||
public enum CandidateKey {
|
||||
public static var defaultKeys: String { suggestions[0] }
|
||||
public static let suggestions: [String] = [
|
||||
"123456789", "234567890", "QWERTYUIO", "QWERTASDF", "ASDFGHJKL", "ASDFZXCVB",
|
||||
"123456", "123456789", "234567890", "QWERTYUIO", "QWERTASDF", "ASDFGHJKL", "ASDFZXCVB",
|
||||
]
|
||||
|
||||
/// 僅列舉那些需要專門檢查才能發現的那種無法自動排除的錯誤。
|
||||
|
|
|
@ -13,7 +13,7 @@ import SwiftExtension
|
|||
|
||||
public class PrefMgr: PrefMgrProtocol {
|
||||
public static let shared = PrefMgr()
|
||||
public static let kDefaultCandidateKeys = "123456789"
|
||||
public static let kDefaultCandidateKeys = "123456"
|
||||
public static let kDefaultBasicKeyboardLayout = "com.apple.keylayout.ZhuyinBopomofo"
|
||||
public static let kDefaultAlphanumericalKeyboardLayout = {
|
||||
if #available(macOS 10.13, *) {
|
||||
|
|
Loading…
Reference in New Issue