emacs: Fix eshell prompt matching
Alan Pearce alan@alanpearce.eu
Sun, 17 Jun 2018 09:45:00 +0200
1 files changed, 2 insertions(+), 1 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -2277,7 +2277,8 @@ (setq eshell-directory-name "~/.emacs.d/eshell" eshell-prompt-function (lambda () (concat (eshell/pwd) - "\n$ "))) + "\n$ ")) + eshell-prompt-regex (rx bol (char "$") blank)) (define-hook-helper eshell-load () (bind-key "C-c C-l" #'counsel-esh-history eshell-mode-map))))