emacs에서 영한 사전 조회

emacs로 문서를 찾거나 인터넷에 접속할 때 모르는 영어 단어를 만날 수 있습니다. xdict로 전환하여 단어를 찾고 다시 emacs로 자르려면 너무 번거롭습니다.다행히도 dict/dictd 도구와 dictionary를 사용합니다.el는emacs에서 영문 단어의 해석을 직접 조회할 수 있다.
1. dict/dictd 설치
ubuntu 아래에서 apt-get으로 직접 설치할 수 있습니다
sudo apt-get install dict dictd

2. 영어-중국어 사전 설치
sudo apt-get install dict-xdict dict-stardic

 3. dictionary를 설치합니다.el 플러그인
emacs에서 M-x package-list-packages 실행
나열된 패키지에서 dictionary 검색
i에 따라 설치하고 x에 따라 설치를 실행하면 자동으로 dictionary를 표시합니다.El이emacs에 설치되었습니다
 4. 프로비저닝
기본 dictionary.el은 dictd 서버 주소를 dict.org로 설정합니다.로컬에서 dictd 서버를 구축했기 때문에 설정 정보를 수정하고 dictd 서버를localhost로 지정해야 합니다.또한 편리한 사용을 위해 단축키도 설정할 수 있다.
에 있습니다.emacs에서 설정 입력
    
(global-set-key [mouse-3] 'dictionary-mouse-popup-matching-words)
(global-set-key [(control c)(d)] 'dictionary-lookup-definition)
(global-set-key [(control c)(s)] 'dictionary-search)
(global-set-key [(control c)(m)] 'dictionary-match-words)

(setq dictionary-server "localhost")

좋은 웹페이지 즐겨찾기