├── CMakeLists.txt ├── COPYING ├── COPYING.LIBS ├── data ├── CMakeLists.txt ├── punc-ng.mb.zh_CN ├── punc-ng.mb.zh_HK └── punc-ng.mb.zh_TW ├── debian ├── changelog ├── compat ├── control ├── copyright ├── fcitx-module-punc-ng.install ├── rules └── source │ └── format └── src ├── CMakeLists.txt ├── cfgrw.c ├── cfgrw.h ├── fcitx-punc-ng.conf.in ├── fcitx-punc-ng.fxaddon ├── iniparser ├── AUTHORS ├── LICENSE ├── Makefile ├── README ├── dictionary.c ├── dictionary.h ├── iniexample.c ├── iniparser.c ├── iniparser.h └── parse.c ├── punc-ng.c └── punc-ng.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/COPYING.LIBS -------------------------------------------------------------------------------- /data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/data/CMakeLists.txt -------------------------------------------------------------------------------- /data/punc-ng.mb.zh_CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/data/punc-ng.mb.zh_CN -------------------------------------------------------------------------------- /data/punc-ng.mb.zh_HK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/data/punc-ng.mb.zh_HK -------------------------------------------------------------------------------- /data/punc-ng.mb.zh_TW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/data/punc-ng.mb.zh_TW -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/fcitx-module-punc-ng.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/debian/fcitx-module-punc-ng.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cfgrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/cfgrw.c -------------------------------------------------------------------------------- /src/cfgrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/cfgrw.h -------------------------------------------------------------------------------- /src/fcitx-punc-ng.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/fcitx-punc-ng.conf.in -------------------------------------------------------------------------------- /src/fcitx-punc-ng.fxaddon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/fcitx-punc-ng.fxaddon -------------------------------------------------------------------------------- /src/iniparser/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/AUTHORS -------------------------------------------------------------------------------- /src/iniparser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/LICENSE -------------------------------------------------------------------------------- /src/iniparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/Makefile -------------------------------------------------------------------------------- /src/iniparser/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/README -------------------------------------------------------------------------------- /src/iniparser/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/dictionary.c -------------------------------------------------------------------------------- /src/iniparser/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/dictionary.h -------------------------------------------------------------------------------- /src/iniparser/iniexample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/iniexample.c -------------------------------------------------------------------------------- /src/iniparser/iniparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/iniparser.c -------------------------------------------------------------------------------- /src/iniparser/iniparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/iniparser.h -------------------------------------------------------------------------------- /src/iniparser/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/iniparser/parse.c -------------------------------------------------------------------------------- /src/punc-ng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/punc-ng.c -------------------------------------------------------------------------------- /src/punc-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoupinyin/fcitx-punc-ng/HEAD/src/punc-ng.h --------------------------------------------------------------------------------