We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823addd commit 1e2c801Copy full SHA for 1e2c801
pythonic.el
@@ -90,7 +90,7 @@
90
pythonic-directory-aliases)))
91
(if (null alias-tuple)
92
path
93
- (concat (cadr alias-tuple)
+ (f-join (cadr alias-tuple)
94
(substring path (length (car alias-tuple)))))))
95
96
(defun pythonic-unaliased-path (alias)
@@ -102,7 +102,7 @@
102
103
104
alias
105
- (concat (car alias-tuple)
+ (f-join (car alias-tuple)
106
(substring alias (min (length (cadr alias-tuple))
107
(length alias)))))))
108
0 commit comments