├── .dir-locals.el ├── .elpaignore ├── .github └── workflows │ └── test.yml ├── .gitignore ├── Development.org ├── Makefile ├── README.org ├── pyim-autoselector.el ├── pyim-candidates.el ├── pyim-cloudim.el ├── pyim-codes.el ├── pyim-common.el ├── pyim-cregexp-utils.el ├── pyim-cregexp.el ├── pyim-cstring-utils.el ├── pyim-cstring.el ├── pyim-dcache.el ├── pyim-dhashcache.el ├── pyim-dict-manager.el ├── pyim-dict.el ├── pyim-dregcache.el ├── pyim-entered.el ├── pyim-imobjs.el ├── pyim-indicator.el ├── pyim-liberime.el ├── pyim-outcome.el ├── pyim-page.el ├── pyim-pinyin.el ├── pyim-preview.el ├── pyim-probe.el ├── pyim-process.el ├── pyim-punctuation.el ├── pyim-pymap-utils.el ├── pyim-pymap.el ├── pyim-scheme.el ├── pyim.el ├── snapshots ├── imewlconverter-basic.gif ├── imewlconverter-wordfreq.gif ├── pyim-console-fbterm.png ├── pyim-linux-x-lxterm.png ├── pyim-linux-x-with-toolkit.png ├── pyim-linux-x-without-toolkit.png ├── pyim-window-cygwin.png └── pyim-winxp-term.png └── tests ├── pyim-byte-compile.el ├── pyim-emacs-init.el └── pyim-tests.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.elpaignore: -------------------------------------------------------------------------------- 1 | snapshots 2 | .github -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/.gitignore -------------------------------------------------------------------------------- /Development.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/Development.org -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/README.org -------------------------------------------------------------------------------- /pyim-autoselector.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-autoselector.el -------------------------------------------------------------------------------- /pyim-candidates.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-candidates.el -------------------------------------------------------------------------------- /pyim-cloudim.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-cloudim.el -------------------------------------------------------------------------------- /pyim-codes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-codes.el -------------------------------------------------------------------------------- /pyim-common.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-common.el -------------------------------------------------------------------------------- /pyim-cregexp-utils.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-cregexp-utils.el -------------------------------------------------------------------------------- /pyim-cregexp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-cregexp.el -------------------------------------------------------------------------------- /pyim-cstring-utils.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-cstring-utils.el -------------------------------------------------------------------------------- /pyim-cstring.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-cstring.el -------------------------------------------------------------------------------- /pyim-dcache.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-dcache.el -------------------------------------------------------------------------------- /pyim-dhashcache.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-dhashcache.el -------------------------------------------------------------------------------- /pyim-dict-manager.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-dict-manager.el -------------------------------------------------------------------------------- /pyim-dict.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-dict.el -------------------------------------------------------------------------------- /pyim-dregcache.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-dregcache.el -------------------------------------------------------------------------------- /pyim-entered.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-entered.el -------------------------------------------------------------------------------- /pyim-imobjs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-imobjs.el -------------------------------------------------------------------------------- /pyim-indicator.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-indicator.el -------------------------------------------------------------------------------- /pyim-liberime.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-liberime.el -------------------------------------------------------------------------------- /pyim-outcome.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-outcome.el -------------------------------------------------------------------------------- /pyim-page.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-page.el -------------------------------------------------------------------------------- /pyim-pinyin.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-pinyin.el -------------------------------------------------------------------------------- /pyim-preview.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-preview.el -------------------------------------------------------------------------------- /pyim-probe.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-probe.el -------------------------------------------------------------------------------- /pyim-process.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-process.el -------------------------------------------------------------------------------- /pyim-punctuation.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-punctuation.el -------------------------------------------------------------------------------- /pyim-pymap-utils.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-pymap-utils.el -------------------------------------------------------------------------------- /pyim-pymap.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-pymap.el -------------------------------------------------------------------------------- /pyim-scheme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim-scheme.el -------------------------------------------------------------------------------- /pyim.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/pyim.el -------------------------------------------------------------------------------- /snapshots/imewlconverter-basic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/snapshots/imewlconverter-basic.gif -------------------------------------------------------------------------------- /snapshots/imewlconverter-wordfreq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/snapshots/imewlconverter-wordfreq.gif -------------------------------------------------------------------------------- /snapshots/pyim-console-fbterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/snapshots/pyim-console-fbterm.png -------------------------------------------------------------------------------- /snapshots/pyim-linux-x-lxterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/snapshots/pyim-linux-x-lxterm.png -------------------------------------------------------------------------------- /snapshots/pyim-linux-x-with-toolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/snapshots/pyim-linux-x-with-toolkit.png -------------------------------------------------------------------------------- /snapshots/pyim-linux-x-without-toolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/snapshots/pyim-linux-x-without-toolkit.png -------------------------------------------------------------------------------- /snapshots/pyim-window-cygwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/snapshots/pyim-window-cygwin.png -------------------------------------------------------------------------------- /snapshots/pyim-winxp-term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/snapshots/pyim-winxp-term.png -------------------------------------------------------------------------------- /tests/pyim-byte-compile.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/tests/pyim-byte-compile.el -------------------------------------------------------------------------------- /tests/pyim-emacs-init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/tests/pyim-emacs-init.el -------------------------------------------------------------------------------- /tests/pyim-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumashu/pyim/HEAD/tests/pyim-tests.el --------------------------------------------------------------------------------