-
After using Using Any ideas? Emmm, seems like Line 1085 in f9b3413 I don't if this problem is just met by me, here is my env:
In Emacs: (borg-drones)
;; => ("/ace-window" "/all-the-icons" "/apheleia" "/async"...
;; And (borg-read-clone) returns an atom without a prefix `/'. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Well, I guess problem is here: Line 314 in f9b3413 The value of Line 350 in f9b3413 And here the If I changed it to this, everything works fine: - (list (substring file offset)))))
+ (list (substring file (1+ offset)))))) |
Beta Was this translation helpful? Give feedback.
-
Oh, I figure it out that's my config's problem. I set |
Beta Was this translation helpful? Give feedback.
Oh, I figure it out that's my config's problem.
I set
borg-drones-directory
to a string without a/
suffix (I usedexpand-file-name
withoutfile-name-directory
, so theprefix
islib
instead oflib/
)