diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-10-16 17:14:46 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-10-16 17:14:46 +0100 |
commit | b39e5e1b420fc7ac786778b0af0b700934696adb (patch) | |
tree | 188581fd63980e98ef04e9c25b8792ab54c59d8d | |
parent | 0d3832c32a827fea0261c71151297787819401eb (diff) | |
download | dotfiles-b39e5e1b420fc7ac786778b0af0b700934696adb.tar.gz dotfiles-b39e5e1b420fc7ac786778b0af0b700934696adb.tar.bz2 dotfiles-b39e5e1b420fc7ac786778b0af0b700934696adb.zip |
add local leader binding to `ls` a directory.
-rw-r--r-- | Emacs/.config/emacs/config.org | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index d47a117..d7e919a 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -1958,6 +1958,10 @@ them. (eshell/goto) (with-current-buffer buffer (eshell-send-input)))) + "l" (proc (interactive) + (eshell-return-to-prompt) + (insert "ls") + (eshell-send-input)) "c" #'+eshell/good-clear "k" #'eshell-kill-process)))) #+end_src |