From 81c96831808a9972a30a2f3f4e39d2e19f860e99 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 31 May 2024 14:59:01 +0100 Subject: [PATCH] Don't call org-journal-invalidate-cache in my/git-sync-all --- init.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/init.el b/init.el index 0c0939d..23902c1 100644 --- a/init.el +++ b/init.el @@ -51,9 +51,7 @@ (defun my/git-sync-all () "Run shell command `git-sync-all' asynchronously." (interactive) - (async-shell-command "git-sync-all" "*git-sync-all*" "*git-sync-errors*") - (when (require 'org-journal nil :noerror) - (org-journal-invalidate-cache))) + (async-shell-command "git-sync-all" "*git-sync-all*" "*git-sync-errors*")) (keymap-global-set "C-c g s" #'my/git-sync-all) (set-default-coding-systems 'utf-8)