mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-17 13:33:36 -05:00
Better file checks in narf:file-move
This commit is contained in:
@@ -60,7 +60,7 @@ provided."
|
|||||||
;; Move all attachments if in org-mode
|
;; Move all attachments if in org-mode
|
||||||
(when (eq major-mode 'org-mode)
|
(when (eq major-mode 'org-mode)
|
||||||
(mapc (lambda (file)
|
(mapc (lambda (file)
|
||||||
(when (file-exists-p file)
|
(when (and (file-exists-p file) (not (f-same? old-path new-path)))
|
||||||
(rename-file file (f-expand (f-filename old-path) (f-dirname new-path)) t)))
|
(rename-file file (f-expand (f-filename old-path) (f-dirname new-path)) t)))
|
||||||
(narf/org-attachments)))
|
(narf/org-attachments)))
|
||||||
(when (buffer-modified-p)
|
(when (buffer-modified-p)
|
||||||
|
Reference in New Issue
Block a user