Differences between revisions 23 and 24
Revision 23 as of 2017-10-08 11:28:38
Size: 4909
Editor: OsamuAoki
Comment:
Revision 24 as of 2017-10-08 14:34:10
Size: 5363
Editor: OsamuAoki
Comment:
Deletions are marked like this. Additions are marked like this.
Line 15: Line 15:
    * gconf 等でできるはず。     * gsettings 等でできるはず。
Line 76: Line 76:

= gsettings =

今は「gconf」ではなく「gsettings」で「dconf」に設定関係は登録する
「dconf」の内容は「dconf-editor」でみられる。

$ gsettings list-keys org.gnome.desktop.input-sources
show-all-sources
xkb-options
per-window
current
mru-sources
sources
$ gsettings get org.gnome.desktop.input-sources sources
[('xkb', 'us'), ('ibus', 'anthy')]

以上の延長で「set」を使うなどする?

Debian 10 / Buster でuim からIBus or fcitx に移行するためのメモ

  • 目的
    • Debian 9 / Stretch では 日本語のデフォルトIMフレームワークとして、uimを採用しているが、Upstreamの開発停滞 により、最新のGUI(Qt5/Gtk3.x)等でのサポートが困難となっている。このページでは、次期リリースである Debian 10 / Buster で日本語のデフォルトIMフレームワークについての検討を行う。 主な議論はMLの上で行い、状況をここに記録する。
    • https://lists.debian.or.jp/pipermail/debian-devel/2017-September/000094.html

A.I.

  • IMの自動設定方法調査
    • gsettings 等でできるはず。
  • IMFの決定(ibus, fcitx)
  • tasksel の対応
  • Debian 10 / Busterに向けてのデバッグ

各IMフレームワーク の状況/問題点

日本人/日本語に関係しそうな IM

  • anthy(基本、最近も細かなアップデートが続いている)

  • skk(EMACS使いの方に根強い人気があります。キーバインディングが独特。)

  • mozc(使えるCPUが限定。学習辞書結果がデーターで使われますが、元データからの再生できないので改良がしにくいバイナリー状態なのも嫌なところです。)

  • kkc (変換精度がいまいちです。イメージはanthy代替だったのかもしれませんが、開発が停滞中?)

Debian のサポート状況 (2017/10/02)

IM/IMF

ibus

fcitx

uim

anthy

(Anthy 0.3)

(Anthy 0.3)

kkc

mozc

skk

※1※2

※2

※3

  • ※1 ibus-skk is dead upstream.

  • ※2 libskk is dead upstream.

  • ※3 no support for UTF-8

ibusとanthy問題は、NEWから1:0.3-5.1がunstableに受け入れられればFTBFSなどの問題は解消するはず。 fcitxもibusも新ライブラリーに切り替えてリビルドしていくことが望ましい。その際はUTF-8に設定する必要あり。

上記のIM以外にscimがありますが、scimはQT5サポートはないし、あまり動きがありません。

他言語の状況

  • 2017/09/10 の時点ではFcitxをサポートしている言語が多い。
  • ibus maintainerの認識:
    • サポート言語の数自体は大差ない。 問題は品質。(libm17n-0経由だと使い勝手は悪い)
    • ただ、中国語の簡体・繁体変換などの付加機能がfcitxにあり、これの点がfcitxはibusより強いようです。これが中華文化圏で絶大な指示がある理由のようです。
    • 使いやすいGUIコンフィギュレーションも、以前はfcitxは少なかったのですが最近では豊富な様です。(ただibusも悪いとは思わないです。)
  • Ibus をサポート
    • task-korean-desktop
  • Fcitx サポート
    • task-amharic-desktop
    • task-chinese-s-desktop
    • task-kannada-desktop
    • task-malayalam-desktop
    • task-telugu-desktop

gsettings

今は「gconf」ではなく「gsettings」で「dconf」に設定関係は登録する 「dconf」の内容は「dconf-editor」でみられる。

$ gsettings list-keys org.gnome.desktop.input-sources show-all-sources xkb-options per-window current mru-sources sources $ gsettings get org.gnome.desktop.input-sources sources [('xkb', 'us'), ('ibus', 'anthy')]

以上の延長で「set」を使うなどする?