eshell-did-you-mean 20150915.1252(in MELPA)
command not found ("did you mean…" feature) in Eshell

概要

eshell-did-you-mean.eleshell でコマンドが見付からないときに、
それらしきコマンドを提示してくれます。

$ grepp
grepp: command not found

Did you mean one of these?
	grep
	cgrep
	dgrep
	egrep
	fgrep
	graph
	grops
	lgrep
	pgrep
	repl
	rgrep
	zgrep

インストール

パッケージシステムを初めて使う人は
以下の設定を ~/.emacs.d/init.el の
先頭に加えてください。

(package-initialize)
(setq package-archives
      '(("gnu" . "http://elpa.gnu.org/packages/")
        ("melpa" . "http://melpa.org/packages/")
        ("org" . "http://orgmode.org/elpa/")))

初めてeshell-did-you-meanを使う方は
以下のコマンドを実行します。

M-x package-install eshell-did-you-mean

アップグレードする方は、
以下のコマンドでアップグレードしてください。
そのためにはpackage-utilsパッケージが必要です。

M-x package-install package-utils (初めてアップグレードする場合のみ)
M-x package-utils-upgrade-by-name eshell-did-you-mean

実行方法

$ wget http://rubikitch.com/f/151207095129.eshell-did-you-mean.el
$ emacs -Q -f package-initialize -l 151207095129.eshell-did-you-mean.el


本日もお読みいただき、ありがとうございました。参考になれば嬉しいです。