From 08cbbcec4df2ce30f9e0959ea36a167a9bd0005a Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 31 May 2019 07:48:35 -0700 Subject: Add esh-autosuggest to eshell --- oni-eshell.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/oni-eshell.el b/oni-eshell.el index f3f5b71..1293749 100644 --- a/oni-eshell.el +++ b/oni-eshell.el @@ -4,8 +4,8 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 20190226021452 -;; Package-Requires: (eshell-fringe-status) +;; Version: 20190531074826 +;; Package-Requires: (eshell-fringe-status esh-autosuggest) ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -28,6 +28,7 @@ (require 'eshell) (require 'em-prompt) +(require 'esh-autosuggest) (defun oni-eshell--C-d () "Call `delete-char' or close the buffer if it fails." @@ -47,9 +48,10 @@ "Set `C-d' to quit eshell if used at end of prompt." (define-key eshell-mode-map (kbd "C-d") #'oni-eshell--C-d)) +(add-hook 'eshell-first-time-mode-hook #'oni-eshell--set-eshell-C-d) (add-hook 'eshell-load-hook #'oni-eshell--enable-truncating-buffers) +(add-hook 'eshell-mode-hook 'esh-autosuggest-mode) (add-hook 'eshell-mode-hook 'goto-address-mode) -(add-hook 'eshell-first-time-mode-hook #'oni-eshell--set-eshell-C-d) (if (window-system) (add-hook 'eshell-mode-hook 'eshell-fringe-status-mode)) -- cgit v1.2.3-54-g00ecf