6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

firefoxからemacs上の辞書を引く

Last updated at Posted at 2016-06-07

firefoxでwebページ中の単語を選択して、emacsにあるツールで辞書を引く。

firefoxの設定
AppLauncher Add onをインストールする。

AppLauncherの設定
windowsの場合
SDIC:
Name SDIC
Path ....\emacs\bin\emacsclientw.exe
Arguments -a
....\emacs\bin\runemacs.exe
-n
--eval
(sdic-describe-word "<<Shift_JIS|&text;>>")
他のOSではemacsclientのパスを設定し、Shift_JISの部分を適切な文字コードにする。

Lookup:
Name Lookup
Arguments
...
(lookup-word "<<Shift_JIS|&text;>>")
NameとArgumentsの最後の行以外は同じ。以下同様。

Google Translate:
Arguments
(google-translate-enja-or-jaen "<<Shift_JIS|&text;>>")

Microsoft Translator:
Arguments
(microsoft-translator-auto-translate "<<Shift_JIS|&text;>>")

Google TranslateとMicrosoft Translatorを一度に実行:
(google-microsoft-translate "<<Shift_JIS|&text;>>")

emacsの設定
各辞書引きツールをインストールする。

init.el
(server-start)

firefoxで単語などを選択→右クリック→AppLauncher→SDICなどを選択。
emacs上に結果が表示される。

参考:
firefoxで表示しているページをemacsで表示する

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?