Skip to content

Commit

Permalink
修复部分拼音打不出来的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
baiyuanneko committed Feb 1, 2024
1 parent 9f00fae commit 33b9c0f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions simple-input-method/simple-input-method.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var SimpleInputMethod =
"r": "uan",
"t": ["ue", "ve"],
"y": "un",
"o": ["o", "uo"],
"o": ["o", "uo", ""],
"p": "ie",
"s": ["iong", "ong"],
"d": "ai",
Expand All @@ -49,7 +49,8 @@ var SimpleInputMethod =
"b": "in",
"n": ["iao", "n"],
"m": "ian",
"a": ["a", ""]
"a": ["a", ""],
"e": ["e", ""],
},
"conflictionSolutionList": {
"t": {
Expand All @@ -58,6 +59,7 @@ var SimpleInputMethod =
},
"o": {
"uo": ["r", "t", "u", "i", "s", "d", "g", "h", "k", "l", "z", "c", "v", "n"],
"": ["o"],
"o": "else"
},
"s": {
Expand Down Expand Up @@ -91,10 +93,6 @@ var SimpleInputMethod =
"e": {
"": ["e"],
"e": "else"
},
"o": {
"": ["o"],
"o": "else"
}
}
}
Expand Down

0 comments on commit 33b9c0f

Please sign in to comment.