From a0b7ccb74b4a71b66b509fbe1b3d21b27957180e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 3 Jul 2018 20:05:49 +0200 Subject: [PATCH] emacs/eshell: restore margins They were disabled because of shell width issues, but removing the margin didn't change the situation! --- modules/emacs/eshell/config.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/emacs/eshell/config.el b/modules/emacs/eshell/config.el index 24e557f19..21178be71 100644 --- a/modules/emacs/eshell/config.el +++ b/modules/emacs/eshell/config.el @@ -83,7 +83,8 @@ You should use `det-eshell-alias!' to change this.") ;; UI enhancements (defun +eshell|remove-fringes () - (set-window-fringes nil 0 0)) + (set-window-fringes nil 0 0) + (set-window-margins nil 1 nil)) (add-hook 'eshell-mode-hook #'+eshell|remove-fringes) (defun +eshell|enable-text-wrapping ()