From 115b665ffd0111412d5af448eafc44967dca19f8 Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Wed, 8 Mar 2023 08:40:52 -0900 Subject: [PATCH] eshell: fix history error --- lisp/mitch-packages.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mitch-packages.el b/lisp/mitch-packages.el index 7e78c27..191e3d3 100644 --- a/lisp/mitch-packages.el +++ b/lisp/mitch-packages.el @@ -178,7 +178,7 @@ ;; eshell. Pretty good actually. (use-package eshell :elpaca nil - :commands (eshell/emacs eshell/man) + ;; :commands (eshell/emacs eshell/man) ;; :init ;; (defun eshell-banner-initialize () ;; "Run Neofetch in eshell." @@ -189,11 +189,11 @@ (eshell-history-file-name nil) (eshell-history-size nil) (eshell-banner-message "") + (eshell-expand-input-functions '(eshell-expand-history-references)) :config (add-to-list 'eshell-modules-list 'eshell-rebind) (add-to-list 'eshell-modules-list 'eshell-hist) (add-to-list 'eshell-modules-list 'eshell-tramp) - (add-to-list 'eshell-expand-input-functions #'eshell-expand-history-references) (add-hook 'kill-emacs-hook #'eshell-save-some-history) (defun eshell-evil-insert-line (count &optional vcount) (interactive "p")