Chinaunix首页 | 论坛 | 博客
  • 博客访问: 8622089
  • 博文数量: 1413
  • 博客积分: 11128
  • 博客等级: 上将
  • 技术积分: 14685
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-13 10:03
个人简介

follow my heart...

文章分类

全部博文(1413)

文章存档

2013年(1)

2012年(5)

2011年(45)

2010年(176)

2009年(148)

2008年(190)

2007年(293)

2006年(555)

分类: LINUX

2009-04-15 11:22:33

测试环境: mandriva 2009.0 + emacs 22
参考:
1).~myrkr/dictionary/installation.html
2).
过程:
1).安装dictd: sudo urpmi dictd
2).下载emacs扩展包: ~myrkr/dictionary/dictionary-1.8.7.tar.gz
3).tar zxvf dictionary-1.8.7.tar.gz
4).make
5).将byte-complie后的.elc文件放在你集中放的emacs的lisp文件夹面面。
6).配置emcas,在~/.emacs中加入:
;=======dictd=========
(autoload 'dictionary-search "dictionary"
            "Ask for a word and search it in all dictionaries" t)
(autoload 'dictionary-match-words "dictionary"
            "Ask for a word and search all matching words in the dictionaries" t)
(autoload 'dictionary-lookup-definition "dictionary"
            "Unconditionally lookup the word at point." t)
(autoload 'dictionary "dictionary"
            "Create a new dictionary buffer" t)
(autoload 'dictionary-mouse-popup-matching-words "dictionary"
            "Display entries matching the word at the cursor" t)
(autoload 'dictionary-popup-matching-words "dictionary"
            "Display entries matching the word at the point" t)
(autoload 'dictionary-tooltip-mode "dictionary"
            "Display tooltips for the current word" t)

(global-set-key (kbd "C-c s") 'dictionary-search)
(global-set-key (kbd "C-c m") 'dictionary-match-words)

(setq dictionary-tooltip-dictionary "wn")
(require 'dictionary)
(global-dictionary-tooltip-mode t)

(global-set-key (kbd "") 'dictionary-mouse-popup-matching-words)
(global-set-key (kbd "C-c m") 'dictionary-popup-matching-words)
(add-hook 'text-mode-hook 'dictionary-tooltip-mode)
(add-hook 'text-mode-hook 'dictionary-tooltip-mode)

测试:
    打开emacs,然后C-c s,输入某个单词,看能否查到。可能速度有点慢,因为要连服务器。不过,目前只能查英文,我还没试出来如何中英文查询。
阅读(1746) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~