Skip to content

Commit

Permalink
Sebeolsik 391 key (#523)
Browse files Browse the repository at this point in the history
* Fix sebeolsik-391 "S-F" key

* Update CHANGELOG
  • Loading branch information
Riey authored Sep 17, 2021
1 parent 428537b commit 7f3ef08
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/.idea
/.cache
/.ccls-cache
/.vscode/c_cpp_properties.json
compile_commands.json
kime_engine.h
kime_engine.hpp
Expand Down
3 changes: 2 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
### Improve

* Update dependencies [#508](https://github.com/Riey/kime/issues/508)
* Fix sebeolsik-3sin-p2 '"' character [#509](https://github.com/Riey/kime/pull/509)
* Fix sebeolsik-3sin-p2 '"' character [#509](https://github.com/Riey/kime/issues/509)
* Fix sebeolsik-391 "S-F" key [#509](https://github.com/Riey/kime/issues/521)

## 2.5.5

Expand Down
1 change: 1 addition & 0 deletions src/engine/backends/hangul/data/sebeolsik-3-91.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ S-A: $ㄷ
S: $ㄴ
S-S: $ㄶ
S-D: $ㄼ
S-F: $ㄻ
Z: $ㅁ
S-Z: $ㅊ
X: $ㄱ
Expand Down
12 changes: 11 additions & 1 deletion src/engine/core/tests/sebeolsik_3_91.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,17 @@ fn good() {
(Key::normal(K), "ㄲ", ""),
(Key::normal(B), "꾸", ""),
(Key::normal(W), "꿀", ""),
])
]);
}

// https://github.com/Riey/kime/issues/521
#[test]
fn issue_521() {
test_input(&[
(Key::normal(J), "ㅇ", ""),
(Key::normal(F), "아", ""),
(Key::shift(F), "앎", ""),
]);
}

#[test]
Expand Down

0 comments on commit 7f3ef08

Please sign in to comment.