all repos — archive/dotfiles @ ef94007b1a123af31f19907fe6366632705daafb

Superseded by nixfiles

emacs: Fix eshell prompt matching

Alan Pearce
commit

ef94007b1a123af31f19907fe6366632705daafb

parent

304ae84662c4064caba54ea4dca2ced2556c8d4b

1 file changed, 2 insertions(+), 1 deletion(-)

jump to
M emacs/.emacs.d/main.elemacs/.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))))