diff options
author | Franck Cuny <franck@fcuny.net> | 2022-01-21 09:37:49 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-01-21 09:37:49 -0800 |
commit | 1501964c71a5b6433a4b7543d80115ec451e5f60 (patch) | |
tree | 80e5dfb77cf30cd2572636c898a6d781e5cb8e99 /emacs | |
parent | emacs: remove configuration for hl-mode (diff) | |
download | emacs.d-1501964c71a5b6433a4b7543d80115ec451e5f60.tar.gz |
eshell: run `ls -l` after entering a directory
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/custom/fcuny-eshell.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-eshell.el b/emacs/custom/fcuny-eshell.el index 6bcef86..0476b2f 100644 --- a/emacs/custom/fcuny-eshell.el +++ b/emacs/custom/fcuny-eshell.el @@ -58,6 +58,8 @@ (progn (goto-char (point-max)) (insert (concat "cd " path)) + (eshell-send-input) + (insert (concat "ls -l")) (eshell-send-input)) (find-file path))) |