Move cursor forward when inserting link to current clock

Cette révision appartient à :
Daniel - 2021-03-20 15:45:15 +01:00
Parent afb06fca59
révision 77920dd9a2
Signature inconnue de Gitea
ID de la clé GPG: 1C7071A75BB72D64
1 fichiers modifiés avec 3 ajouts et 3 suppressions

Voir le fichier

@ -729,9 +729,9 @@ in an Org Mode buffer or when the clock is not active."
(user-error "No clocked-in task, aborting"))
(save-mark-and-excursion
(org-with-point-at org-clock-marker
(org-store-link nil t))
(pcase-let ((`(,location ,description) (cl-first org-stored-links)))
(org-insert-link nil location description))))
(org-store-link nil t)))
(pcase-let ((`(,location ,description) (cl-first org-stored-links)))
(org-insert-link nil location description)))
;;; End