mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
c9c37baaaa
Notified by: bento
12 lines
320 B
Plaintext
12 lines
320 B
Plaintext
Eshell is a command shell implemented entirely in Emacs Lisp.
|
|
|
|
Put the expression below into your ~/.emacs.
|
|
|
|
;; You can run eshell by M-x eshell
|
|
(require 'eshell-auto)
|
|
;; Use pcomplete with shell-mode
|
|
(require 'pcmpl-auto)
|
|
(add-hook 'shell-mode-hook 'pcomplete-shell-setup)
|
|
|
|
WWW: http://emacswiki.org/johnw/eshell.html
|