├── .clang-format ├── .clangd ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── CMakeLists.txt ├── LICENSES └── BSD-3-Clause.txt ├── README.md ├── assets ├── helpcode.txt ├── pinyin.txt └── word.txt ├── po ├── CMakeLists.txt ├── LINGUAS ├── fcitx5-fanime.pot └── zh_CN.po ├── scripts ├── lcompile-debug.sh ├── lcompile.sh ├── linstall.sh └── llaunch.sh └── src ├── CMakeLists.txt ├── dict.cpp ├── dict.h ├── fanime-addon.conf.in.in ├── fanime.conf.in ├── fanime.cpp ├── fanime.h ├── global.h ├── log.cpp ├── log.h ├── pinyin_utils.cpp └── pinyin_utils.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/.clang-format -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/.clangd -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | expe/ 3 | tests/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/README.md -------------------------------------------------------------------------------- /assets/helpcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/assets/helpcode.txt -------------------------------------------------------------------------------- /assets/pinyin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/assets/pinyin.txt -------------------------------------------------------------------------------- /assets/word.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/assets/word.txt -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/po/CMakeLists.txt -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /po/fcitx5-fanime.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/po/fcitx5-fanime.pot -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /scripts/lcompile-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/scripts/lcompile-debug.sh -------------------------------------------------------------------------------- /scripts/lcompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/scripts/lcompile.sh -------------------------------------------------------------------------------- /scripts/linstall.sh: -------------------------------------------------------------------------------- 1 | cd build 2 | sudo make install 3 | cd .. -------------------------------------------------------------------------------- /scripts/llaunch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/scripts/llaunch.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/dict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/dict.cpp -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/fanime-addon.conf.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/fanime-addon.conf.in.in -------------------------------------------------------------------------------- /src/fanime.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/fanime.conf.in -------------------------------------------------------------------------------- /src/fanime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/fanime.cpp -------------------------------------------------------------------------------- /src/fanime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/fanime.h -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/global.h -------------------------------------------------------------------------------- /src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/log.cpp -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/log.h -------------------------------------------------------------------------------- /src/pinyin_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/pinyin_utils.cpp -------------------------------------------------------------------------------- /src/pinyin_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanlumaster/fcitx5-FanIME/HEAD/src/pinyin_utils.h --------------------------------------------------------------------------------