From 29834774cfe18f7685840365e87c403fb770d617 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sat, 22 May 2021 16:39:05 -0400 Subject: piem-use-magit: Unconditionally set to t When piem is loaded, piem-use-magit is enabled if Magit has already been loaded. This approach is potentially confusing: a user may want to use Magit, be happy that it seems to just work, and then confused when it doesn't work in some later session where loading Magit happens to not be triggered before loading piem. All the relevant sites have fboundp guards (and those are cheap), so there's no advantage to disabling this if Magit isn't enabled at load time. Set piem-use-magit to t by default. Message-Id: <20210522203905.16504-3-kyle@kyleam.com> --- piem.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'piem.el') diff --git a/piem.el b/piem.el index 780df00..c273138 100644 --- a/piem.el +++ b/piem.el @@ -139,7 +139,7 @@ the return value of `piem-mid'." "Which git executable to use." :type 'string) -(defcustom piem-use-magit (featurep 'magit) +(defcustom piem-use-magit t "Whether to use Magit for some user-facing operations." :type 'boolean) -- cgit v1.2.3