eshell: ignore duplicate history entries

This commit is contained in:
MitchMarq42 2022-10-10 13:35:05 -08:00
parent ab70433d35
commit 9635ec2b94

View File

@ -130,7 +130,9 @@
(use-package eshell (use-package eshell
:straight (:type built-in) :straight (:type built-in)
:commands (eshell/emacs eshell/man) :commands (eshell/emacs eshell/man)
:custom (eshell-scroll-to-bottom-on-input t) :custom
(eshell-scroll-to-bottom-on-input t)
(eshell-hist-ignoredups t)
:config :config
(add-to-list 'eshell-modules-list 'eshell-rebind) (add-to-list 'eshell-modules-list 'eshell-rebind)
(defun eshell-evil-insert-line (count &optional vcount) (defun eshell-evil-insert-line (count &optional vcount)