From 1725afbb6000fba2312b470914ee1f9f3f5c6430 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 6 Feb 2019 19:15:05 -0500 Subject: [PATCH] Don't clobber the crontab command in eshell --- emacs/init.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/init.org b/emacs/init.org index 1580cf2..5261e27 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -2108,7 +2108,7 @@ Preserve the leader key: Magit ships with a cool utility called =with-editor= that lets you run a shell command using the current Emacs instance as $EDITOR. This means we can define a command to edit the crontab with the current Emacs instance: #+BEGIN_SRC emacs-lisp - (defun crontab () + (defun edit-crontab () (interactive) (with-editor-async-shell-command "crontab -e")) #+END_SRC