summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-01-21 09:37:49 -0800
committerFranck Cuny <franck@fcuny.net>2022-01-21 09:37:49 -0800
commit1501964c71a5b6433a4b7543d80115ec451e5f60 (patch)
tree80e5dfb77cf30cd2572636c898a6d781e5cb8e99 /emacs
parentemacs: remove configuration for hl-mode (diff)
downloademacs.d-1501964c71a5b6433a4b7543d80115ec451e5f60.tar.gz
eshell: run `ls -l` after entering a directory
Diffstat (limited to 'emacs')
-rw-r--r--emacs/custom/fcuny-eshell.el2
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)))