From b364cd3c61f1221ca7433e1f4951052205852b04 Mon Sep 17 00:00:00 2001 From: bmag Date: Mon, 18 Feb 2019 20:38:50 +0200 Subject: [PATCH] Transient and magit-svn fixes - magit-svn-popup renamed to magit-svn (more fallout of Transient) - more reliable placement of Transient cache files --- layers/+source-control/git/packages.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/layers/+source-control/git/packages.el b/layers/+source-control/git/packages.el index d2ea31f12..2c782a25e 100644 --- a/layers/+source-control/git/packages.el +++ b/layers/+source-control/git/packages.el @@ -230,7 +230,7 @@ Press [_b_] again to blame further in the history, [_q_] to go up or quit." :init (add-hook 'magit-mode-hook 'turn-on-magit-svn) :config (progn (spacemacs|diminish magit-svn-mode "SVN") - (define-key magit-mode-map "~" 'magit-svn-popup)))) + (define-key magit-mode-map "~" 'magit-svn)))) (defun git/init-orgit () (use-package orgit @@ -259,11 +259,12 @@ Press [_b_] again to blame further in the history, [_q_] to go up or quit." (defun git/init-transient () (use-package transient + :defer t :init (setq transient-levels-file - (concat spacemacs-cache-directory (convert-standard-filename "transient/levels.el")) + (expand-file-name "transient/levels.el" spacemacs-cache-directory) transient-values-file - (concat spacemacs-cache-directory (convert-standard-filename "transient/values.el")) + (expand-file-name "transient/values.el" spacemacs-cache-directory) transient-history-file - (concat spacemacs-cache-directory (convert-standard-filename "transient/history.el"))))) + (expand-file-name "transient/history.el" spacemacs-cache-directory))))