├── .clang-format ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSES └── GPL-3.0-only.txt ├── README.md ├── data ├── CMakeLists.txt ├── cedict.json ├── google_227800_words.txt └── words.json ├── org.fcitx.Fcitx5.Addon.Hallelujah.metainfo.xml.in ├── src ├── CMakeLists.txt ├── factory.cpp ├── factory.h ├── hallelujah-addon.conf.in.in ├── hallelujah.conf.in ├── hallelujah.cpp └── hallelujah.h └── test ├── CMakeLists.txt └── testhallelujah.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/README.md -------------------------------------------------------------------------------- /data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/data/CMakeLists.txt -------------------------------------------------------------------------------- /data/cedict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/data/cedict.json -------------------------------------------------------------------------------- /data/google_227800_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/data/google_227800_words.txt -------------------------------------------------------------------------------- /data/words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/data/words.json -------------------------------------------------------------------------------- /org.fcitx.Fcitx5.Addon.Hallelujah.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/org.fcitx.Fcitx5.Addon.Hallelujah.metainfo.xml.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/src/factory.cpp -------------------------------------------------------------------------------- /src/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/src/factory.h -------------------------------------------------------------------------------- /src/hallelujah-addon.conf.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/src/hallelujah-addon.conf.in.in -------------------------------------------------------------------------------- /src/hallelujah.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/src/hallelujah.conf.in -------------------------------------------------------------------------------- /src/hallelujah.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/src/hallelujah.cpp -------------------------------------------------------------------------------- /src/hallelujah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/src/hallelujah.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/testhallelujah.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcitx-contrib/fcitx5-hallelujah/HEAD/test/testhallelujah.cpp --------------------------------------------------------------------------------