You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems to me that Mozc in Kana mode always uses a char-to-kana mapping designed for the US keyboard layout, for example
` => ろ
[ => ゛
etc. This became problematic when I tried with a Japanese keyboard layout, where these mapping should be
\ => ろ
@ => ゛
and so on.
I followed the discussion google#427 and found a correct mapping already present in src/unix/fcitx5/fcitx_key_translator.cc, and that this mapping is used in the series of translator functions as long as the arguments called layout_is_jp is set to true.
However, in src/unix/fcitx5/fcitx_key_translator.cc, which I believe all these layout_is_jp's originate from, I found that it is always specified as false:
So it seems to me that the detection of a JP keyboard layout hasn't been implemented for fcitx5-mozc.
Do you have time to implement this, or comment on how to implement it correctly? My understanding is to check the keyboard layout configured in the fcitx5 config tool (per group or per input method).
Thank you.
The text was updated successfully, but these errors were encountered:
It seems to me that Mozc in Kana mode always uses a char-to-kana mapping designed for the US keyboard layout, for example
etc. This became problematic when I tried with a Japanese keyboard layout, where these mapping should be
and so on.
I followed the discussion google#427 and found a correct mapping already present in
src/unix/fcitx5/fcitx_key_translator.cc
, and that this mapping is used in the series of translator functions as long as the arguments calledlayout_is_jp
is set totrue
.However, in
src/unix/fcitx5/fcitx_key_translator.cc
, which I believe all theselayout_is_jp
's originate from, I found that it is always specified asfalse
:So it seems to me that the detection of a JP keyboard layout hasn't been implemented for fcitx5-mozc.
Do you have time to implement this, or comment on how to implement it correctly? My understanding is to check the keyboard layout configured in the fcitx5 config tool (per group or per input method).
Thank you.
The text was updated successfully, but these errors were encountered: