├── .dir-locals.el ├── .gitignore ├── COPYING ├── Makefile.am ├── NEWS.md ├── README.en.md ├── README.md ├── autogen.sh ├── configure.ac ├── lisp ├── Makefile.am ├── tr-ime-debug.el ├── tr-ime-documentfeed.el ├── tr-ime-download.el ├── tr-ime-font.el ├── tr-ime-hook.el ├── tr-ime-isearch.el ├── tr-ime-openstatus.el ├── tr-ime-prefix-key.el ├── tr-ime-reconversion.el ├── tr-ime-recv-notify.el ├── tr-ime-subclassify.el ├── tr-ime-sync.el ├── tr-ime-thread-message.el ├── tr-ime-workaround-inconsistent.el ├── tr-ime-workaround-isearch.el ├── tr-ime-workaround-prefix-key.el └── tr-ime.el ├── m4 ├── .gitignore └── ax_cxx_compile_stdcxx.m4 └── src ├── Makefile.am ├── debug-message.cc ├── debug-message.hh ├── emacs-27.1 └── emacs-module.h ├── get_msg_hook.cc ├── get_msg_hook.hh ├── get_msg_proc.cc ├── get_msg_proc.hh ├── lisp-in-cc.cc ├── lisp-in-cc.hh ├── message.cc ├── message.hh ├── queue.cc ├── queue.hh ├── subclass_proc.cc ├── subclass_proc.hh ├── tr-ime-mod-resource.rc ├── tr-ime-mod.c ├── tr-ime-modadv-resource.rc └── tr-ime-modadv.cc /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -v -i 4 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/configure.ac -------------------------------------------------------------------------------- /lisp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/Makefile.am -------------------------------------------------------------------------------- /lisp/tr-ime-debug.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-debug.el -------------------------------------------------------------------------------- /lisp/tr-ime-documentfeed.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-documentfeed.el -------------------------------------------------------------------------------- /lisp/tr-ime-download.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-download.el -------------------------------------------------------------------------------- /lisp/tr-ime-font.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-font.el -------------------------------------------------------------------------------- /lisp/tr-ime-hook.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-hook.el -------------------------------------------------------------------------------- /lisp/tr-ime-isearch.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-isearch.el -------------------------------------------------------------------------------- /lisp/tr-ime-openstatus.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-openstatus.el -------------------------------------------------------------------------------- /lisp/tr-ime-prefix-key.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-prefix-key.el -------------------------------------------------------------------------------- /lisp/tr-ime-reconversion.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-reconversion.el -------------------------------------------------------------------------------- /lisp/tr-ime-recv-notify.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-recv-notify.el -------------------------------------------------------------------------------- /lisp/tr-ime-subclassify.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-subclassify.el -------------------------------------------------------------------------------- /lisp/tr-ime-sync.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-sync.el -------------------------------------------------------------------------------- /lisp/tr-ime-thread-message.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-thread-message.el -------------------------------------------------------------------------------- /lisp/tr-ime-workaround-inconsistent.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-workaround-inconsistent.el -------------------------------------------------------------------------------- /lisp/tr-ime-workaround-isearch.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-workaround-isearch.el -------------------------------------------------------------------------------- /lisp/tr-ime-workaround-prefix-key.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime-workaround-prefix-key.el -------------------------------------------------------------------------------- /lisp/tr-ime.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/lisp/tr-ime.el -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/debug-message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/debug-message.cc -------------------------------------------------------------------------------- /src/debug-message.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/debug-message.hh -------------------------------------------------------------------------------- /src/emacs-27.1/emacs-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/emacs-27.1/emacs-module.h -------------------------------------------------------------------------------- /src/get_msg_hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/get_msg_hook.cc -------------------------------------------------------------------------------- /src/get_msg_hook.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/get_msg_hook.hh -------------------------------------------------------------------------------- /src/get_msg_proc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/get_msg_proc.cc -------------------------------------------------------------------------------- /src/get_msg_proc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/get_msg_proc.hh -------------------------------------------------------------------------------- /src/lisp-in-cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/lisp-in-cc.cc -------------------------------------------------------------------------------- /src/lisp-in-cc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/lisp-in-cc.hh -------------------------------------------------------------------------------- /src/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/message.cc -------------------------------------------------------------------------------- /src/message.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/message.hh -------------------------------------------------------------------------------- /src/queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/queue.cc -------------------------------------------------------------------------------- /src/queue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/queue.hh -------------------------------------------------------------------------------- /src/subclass_proc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/subclass_proc.cc -------------------------------------------------------------------------------- /src/subclass_proc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/subclass_proc.hh -------------------------------------------------------------------------------- /src/tr-ime-mod-resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/tr-ime-mod-resource.rc -------------------------------------------------------------------------------- /src/tr-ime-mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/tr-ime-mod.c -------------------------------------------------------------------------------- /src/tr-ime-modadv-resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/tr-ime-modadv-resource.rc -------------------------------------------------------------------------------- /src/tr-ime-modadv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueroad/tr-emacs-ime-module/HEAD/src/tr-ime-modadv.cc --------------------------------------------------------------------------------