You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation for deft--org-complete selects 'file' from (deft-find-all-files-no-prefix) and concats "deft:" and with (substring file 1)`, but file is already the file name, so it is removing the first character and making an invalid link.
The current implementation for deft--org-complete selects 'file' from
(deft-find-all-files-no-prefix) and concats "deft:" and with
(substring file 1)`, but file is already the file name, so it is removing the first character and making an invalid link.This can be fixed by removing
(substring file 1)
, and for a bit more clarity replacing "file" with "file: " looks a bit betterThe text was updated successfully, but these errors were encountered: