mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
* Fix Issue #4212; Use Back-Slash for Win FileShares * Replace single backslash with double Co-authored-by: Henrik Lissner <accounts@v0.io>
This commit is contained in:
@ -412,7 +412,7 @@ relative to `org-directory', unless it is an absolute path."
|
||||
:face (lambda (path)
|
||||
(if (or (file-remote-p path)
|
||||
;; filter out network shares on windows (slow)
|
||||
(and IS-WINDOWS (string-prefix-p "//" path))
|
||||
(and IS-WINDOWS (string-prefix-p "\\\\" path))
|
||||
(file-exists-p path))
|
||||
'org-link
|
||||
'error)))
|
||||
|
Reference in New Issue
Block a user