diff options
author | Thanos Apollo <[email protected]> | 2022-12-13 12:48:38 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2022-12-13 12:48:38 +0200 |
commit | 80028fe0b5112096465c34206a995e8d78f3cea8 (patch) | |
tree | 2d42e460f416ae17946214cc7f387a993d246256 | |
parent | b34562a115f9e68725c2a09639de6dab54c1fe1f (diff) |
Add eshell-new
-rw-r--r-- | .emacs.d/lisp/functions.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/lisp/functions.el b/.emacs.d/lisp/functions.el index e330bbd..ce1aada 100644 --- a/.emacs.d/lisp/functions.el +++ b/.emacs.d/lisp/functions.el @@ -106,5 +106,10 @@ (defun apollo/exwm-update-class () (exwm-workspace-rename-buffer exwm-class-name)) +(defun eshell-new() + "Open a new instance of eshell." + (interactive) + (eshell 'N)) + ;;; my-functions.el ends here |