summaryrefslogtreecommitdiff
path: root/piem.el
diff options
context:
space:
mode:
Diffstat (limited to 'piem.el')
-rw-r--r--piem.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/piem.el b/piem.el
index f4ba96b..e958ada 100644
--- a/piem.el
+++ b/piem.el
@@ -295,13 +295,13 @@ intended to be used by libraries implementing a function for
(let ((inbox
(or (piem-inbox-coderepo)
(and (bound-and-true-p projectile-known-projects)
- (completing-read
- "Project: "
- projectile-known-projects nil t nil nil
- (when-let ((current (and (fboundp 'projectile-project-root)
- (projectile-project-root))))
- (abbreviate-file-name current))))
-
+ (expand-file-name
+ (completing-read
+ "Project: "
+ projectile-known-projects nil t nil nil
+ (when-let ((current (and (fboundp 'projectile-project-root)
+ (projectile-project-root))))
+ (abbreviate-file-name current)))))
(and piem-use-magit
(fboundp 'magit-read-repository)
(magit-read-repository))