>>580
https://github.com/syohex/emacs-helm-ispell
(el-get-bundle 'syohex/emacs-helm-ispell)
helmユーザなら(そうでなくても)、helm-ispellが便利かも。

$ aspell -l en dump master | sort > english_words
とかで、平文単語リストデータを適当に用意して

(setq ispell-alternate-dictionary "/path/to/english_words")
(global-set-key (kbd "M-$") 'helm-ispell)
とか適当に設定。