youdao-dictionary
、Emacs 用のシンプルな Youdao Dictionary (有道词典) インターフェイスです。
MELPA からyoudao-dictionary
インストールするには:
Mx package-install RET youdao-dictionary RET
Youdao は今年 (2023 年) 初めに無料 API を廃止したため、このパッケージはそのままでは使用できなくなりました。 APIの申請はご自身で行う必要があります。
~/.authinfo.gpg
または~/.authinfo
で API キーとシークレットを設定できます。例:
マシン openapi.youdao.com ログイン 应用ID パスワード 应用秘钥
あるいは、構成でそれらを設定することもできます。
; ; Change 应用ID and 应用秘钥 to yours
( setq youdao-dictionary-app-key "应用ID "
youdao-dictionary-secret-key "应用秘钥" )
youdao-dictionary-search-at-point
youdao-dictionary-search-at-point+
youdao-dictionary-search-at-point-tooltip
youdao-dictionary-search-at-point-posframe
youdao-dictionary-search-from-input
youdao-dictionary-search-and-replace
youdao-dictionary-play-voice-at-point
youdao-dictionary-play-voice-from-input
youdao-dictionary-posframe-tip-face
tooltip
を継承します ; ; Enable Cache
( setq url-automatic-caching t )
; ; Example Key binding
( global-set-key ( kbd " C-c y " ) 'youdao-dictionary-search-at-point )
; ; Integrate with popwin-el (https://github.com/m2ym/popwin-el)
; ; (push "*Youdao Dictionary*" popwin:special-display-config)
; ; Set file path for saving search history
; ; (setq youdao-dictionary-search-history-file "~/.emacs.d/.youdao")
; ; Enable Chinese word segmentation support (支持中文分词)
; ; (setq youdao-dictionary-use-chinese-word-segmentation t)
注: 中国語の単語セグメンテーションのサポートを有効にするには、外部の中国語単語セグメンテーション ツール (例: 结巴分词) が必要です。詳細については、「chinese-word-at-point.el#prerequisite」を参照してください。