mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
e6eabf32d0
This is forked version from the original one bundled with migemo.
21 lines
638 B
Plaintext
21 lines
638 B
Plaintext
migemo.el is a Japanese incremental search tool for Emacs.
|
|
You can search Japanese words on Emacs without Kanji conversion.
|
|
This migemo.el is forked version from the original one bundled with migemo.
|
|
|
|
To use migemo.el, please set the following elisp to your own
|
|
~/.emacs.d/init.el file.
|
|
|
|
(require 'migemo)
|
|
(setq migemo-command "cmigemo")
|
|
(setq migemo-options '("-q" "--emacs"))
|
|
|
|
(setq migemo-dictionary "/usr/local/share/cmigemo/utf-8/migemo-dict")
|
|
|
|
(setq migemo-user-dictionary nil)
|
|
(setq migemo-regex-dictionary nil)
|
|
(setq migemo-coding-system 'utf-8-unix)
|
|
(load-library "migemo")
|
|
(migemo-init)
|
|
|
|
WWW: https://github.com/emacs-jp/migemo
|