youdao-dictionary
是 Emacs 的一个简单的有道词典(有道词典)界面。
从 MELPA 安装youdao-dictionary
:
Mx package-install RET youdao-dictionary RET
有道于今年早些时候(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#precession。