org-id.el 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  1. ;;; org-id.el --- Global identifiers for Org-mode entries
  2. ;; Copyright (C) 2008 Free Software Foundation, Inc.
  3. ;;
  4. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  5. ;; Keywords: outlines, hypermedia, calendar, wp
  6. ;; Homepage: http://orgmode.org
  7. ;; Version: 6.16trans
  8. ;;
  9. ;; This file is part of GNU Emacs.
  10. ;;
  11. ;; GNU Emacs is free software: you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation, either version 3 of the License, or
  14. ;; (at your option) any later version.
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. ;; GNU General Public License for more details.
  19. ;; You should have received a copy of the GNU General Public License
  20. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  21. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  22. ;;
  23. ;;; Commentary:
  24. ;; This file implements globally unique identifiers for Org-mode entries.
  25. ;; Identifiers are stored in the entry as an :ID: property. Functions
  26. ;; are provided that create and retrieve such identifiers, and that find
  27. ;; entries based on the identifier.
  28. ;; Identifiers consist of a prefix (default "Org" given by the variable
  29. ;; `org-id-prefix') and a unique part that can be created by a number
  30. ;; of different methods, see the variable `org-id-method'.
  31. ;; Org has a builtin method that uses a compact encoding of the creation
  32. ;; time of the ID, with microsecond accuracy. This virtually
  33. ;; guarantees globally unique identifiers, even if several people are
  34. ;; creating IDs at the same time in files that will eventually be used
  35. ;; together. As an external method `uuidgen' is supported, if installed
  36. ;; on the system.
  37. ;;
  38. ;; This file defines the following API:
  39. ;;
  40. ;; org-id-get-create
  41. ;; Create an ID for the entry at point if it does not yet have one.
  42. ;; Returns the ID (old or new). This function can be used
  43. ;; interactively, with prefix argument the creation of a new ID is
  44. ;; forced, even if there was an old one.
  45. ;;
  46. ;; org-id-get
  47. ;; Get the ID property of an entry. Using appropriate arguments
  48. ;; to the function, it can also create the ID for this entry.
  49. ;;
  50. ;; org-id-goto
  51. ;; Command to go to a specific ID, this command can be used
  52. ;; interactively.
  53. ;;
  54. ;; org-id-get-with-outline-path-completion
  55. ;; Retrieve the ID of an entry, using outline path completion.
  56. ;; This function can work for multiple files.
  57. ;;
  58. ;; org-id-get-with-outline-drilling
  59. ;; Retrieve the ID of an entry, using outline path completion.
  60. ;; This function only works for the current file.
  61. ;;
  62. ;; org-id-find
  63. ;; Find the location of an entry with specific id.
  64. ;;
  65. (require 'org)
  66. (declare-function message-make-fqdn "message" ())
  67. ;;; Customization
  68. (defgroup org-id nil
  69. "Options concerning global entry identifiers in Org-mode."
  70. :tag "Org ID"
  71. :group 'org)
  72. (defcustom org-id-method
  73. (condition-case nil
  74. (if (string-match "\\`[-0-9a-fA-F]\\{36\\}\\'"
  75. (org-trim (shell-command-to-string "uuidgen")))
  76. 'uuidgen
  77. 'org)
  78. (error 'org))
  79. "The method that should be used to create new IDs.
  80. If `uuidgen' is available on the system, it will be used as the default method.
  81. if not, the method `org' is used.
  82. An ID will consist of the optional prefix specified in `org-id-prefix',
  83. and a unique part created by the method this variable specifies.
  84. Allowed values are:
  85. org Org's own internal method, using an encoding of the current time to
  86. microsecond accuracy, and optionally the current domain of the
  87. computer. See the variable `org-id-include-domain'.
  88. uuidgen Call the external command uuidgen."
  89. :group 'org-id
  90. :type '(choice
  91. (const :tag "Org's internal method" org)
  92. (const :tag "external: uuidgen" uuidgen)))
  93. (defcustom org-id-prefix nil
  94. "The prefix for IDs.
  95. This may be a string, or it can be nil to indicate that no prefix is required.
  96. When a string, the string should have no space characters as IDs are expected
  97. to have no space characters in them."
  98. :group 'org-id
  99. :type '(choice
  100. (const :tag "No prefix")
  101. (string :tag "Prefix")))
  102. (defcustom org-id-include-domain nil
  103. "Non-nil means, add the domain name to new IDs.
  104. This ensures global uniqueness of IDs, and is also suggested by
  105. RFC 2445 in combination with RFC 822. This is only relevant if
  106. `org-id-method' is `org'. When uuidgen is used, the domain will never
  107. be added.
  108. The default is to not use this because we have no really good way to get
  109. the true domain, and Org entries will normally not be shared with enough
  110. people to make this necessary."
  111. :group 'org-id
  112. :type 'boolean)
  113. (defcustom org-id-track-globally t
  114. "Non-nil means, track IDs through files, so that links work globally.
  115. This work by maintaining a hash table for IDs and writing this table
  116. to disk when exiting Emacs. Because of this, it works best if you use
  117. a single Emacs process, not many.
  118. When nil, IDs are not tracked. Links to IDs will still work within
  119. a buffer, but not if the entry is located in another file.
  120. IDs can still be used if the entry with the id is in the same file as
  121. the link."
  122. :group 'org-id
  123. :type 'boolean)
  124. (defcustom org-id-locations-file (convert-standard-filename
  125. "~/.emacs.d/.org-id-locations")
  126. "The file for remembering in which file an ID was defined.
  127. This variable is only relevant when `org-id-track-globally' is set."
  128. :group 'org-id
  129. :type 'file)
  130. (defvar org-id-locations nil
  131. "List of files with IDs in those files.
  132. Depending on `org-id-use-hash' this can also be a hash table mapping IDs
  133. to files.")
  134. (defvar org-id-files nil
  135. "List of files that contain IDs.")
  136. (defcustom org-id-extra-files 'org-agenda-text-search-extra-files
  137. "Files to be searched for IDs, besides the agenda files.
  138. When Org reparses files to remake the list of files and IDs it is tracking,
  139. it will normally scan the agenda files, the archives related to agenda files,
  140. any files that are listed as ID containing in the current register, and
  141. any Org-mode files currently visited by Emacs.
  142. You can list additional files here.
  143. This variable is only relevant when `org-id-track-globally' is set."
  144. :group 'org-id
  145. :type
  146. '(choice
  147. (symbol :tag "Variable")
  148. (repeat :tag "List of files"
  149. (file))))
  150. (defcustom org-id-search-archives t
  151. "Non-nil means, search also the archive files of agenda files for entries.
  152. This is a possibility to reduce overhead, but it means that entries moved
  153. to the archives can no longer be found by ID.
  154. This variable is only relevant when `org-id-track-globally' is set."
  155. :group 'org-id
  156. :type 'boolean)
  157. ;;; The API functions
  158. ;;;###autoload
  159. (defun org-id-get-create (&optional force)
  160. "Create an ID for the current entry and return it.
  161. If the entry already has an ID, just return it.
  162. With optional argument FORCE, force the creation of a new ID."
  163. (interactive "P")
  164. (when force
  165. (org-entry-put (point) "ID" nil))
  166. (org-id-get (point) 'create))
  167. ;;;###autoload
  168. (defun org-id-copy ()
  169. "Copy the ID of the entry at point to the kill ring.
  170. Create an ID if necessary."
  171. (interactive)
  172. (kill-new (org-id-get nil 'create)))
  173. ;;;###autoload
  174. (defun org-id-get (&optional pom create prefix)
  175. "Get the ID property of the entry at point-or-marker POM.
  176. If POM is nil, refer to the entry at point.
  177. If the entry does not have an ID, the function returns nil.
  178. However, when CREATE is non nil, create an ID if none is present already.
  179. PREFIX will be passed through to `org-id-new'.
  180. In any case, the ID of the entry is returned."
  181. (let ((id (org-entry-get pom "ID")))
  182. (cond
  183. ((and id (stringp id) (string-match "\\S-" id))
  184. id)
  185. (create
  186. (setq id (org-id-new prefix))
  187. (org-entry-put pom "ID" id)
  188. (org-id-add-location id (buffer-file-name (buffer-base-buffer)))
  189. id)
  190. (t nil))))
  191. ;;;###autoload
  192. (defun org-id-get-with-outline-path-completion (&optional targets)
  193. "Use outline-path-completion to retrieve the ID of an entry.
  194. TARGETS may be a setting for `org-refile-targets' to define the eligible
  195. headlines. When omitted, all headlines in all agenda files are
  196. eligible.
  197. It returns the ID of the entry. If necessary, the ID is created."
  198. (let* ((org-refile-targets (or targets '((nil . (:maxlevel . 10)))))
  199. (org-refile-use-outline-path
  200. (if (caar org-refile-targets) 'file t))
  201. (spos (org-refile-get-location "Entry: "))
  202. (pom (and spos (move-marker (make-marker) (nth 3 spos)
  203. (get-file-buffer (nth 1 spos))))))
  204. (prog1 (org-id-get pom 'create)
  205. (move-marker pom nil))))
  206. ;;;###autoload
  207. (defun org-id-get-with-outline-drilling (&optional targets)
  208. "Use an outline-cycling interface to retrieve the ID of an entry.
  209. This only finds entries in the current buffer, using `org-get-location'.
  210. It returns the ID of the entry. If necessary, the ID is created."
  211. (let* ((spos (org-get-location (current-buffer) org-goto-help))
  212. (pom (and spos (move-marker (make-marker) (car spos)))))
  213. (prog1 (org-id-get pom 'create)
  214. (move-marker pom nil))))
  215. ;;;###autoload
  216. (defun org-id-goto (id)
  217. "Switch to the buffer containing the entry with id ID.
  218. Move the cursor to that entry in that buffer."
  219. (interactive "sID: ")
  220. (let ((m (org-id-find id 'marker)))
  221. (unless m
  222. (error "Cannot find entry with ID \"%s\"" id))
  223. (switch-to-buffer (marker-buffer m))
  224. (goto-char m)
  225. (move-marker m nil)
  226. (org-show-context)))
  227. ;;;###autoload
  228. (defun org-id-find (id &optional markerp)
  229. "Return the location of the entry with the id ID.
  230. The return value is a cons cell (file-name . position), or nil
  231. if there is no entry with that ID.
  232. With optional argument MARKERP, return the position as a new marker."
  233. (cond
  234. ((symbolp id) (setq id (symbol-name id)))
  235. ((numberp id) (setq id (number-to-string id))))
  236. (let ((file (org-id-find-id-file id))
  237. org-agenda-new-buffers where)
  238. (when file
  239. (setq where (org-id-find-id-in-file id file markerp)))
  240. (unless where
  241. (org-id-update-id-locations)
  242. (setq file (org-id-find-id-file id))
  243. (when file
  244. (setq where (org-id-find-id-in-file id file markerp))))
  245. where))
  246. ;;; Internal functions
  247. ;; Creating new IDs
  248. (defun org-id-new (&optional prefix)
  249. "Create a new globally unique ID.
  250. An ID consists of two parts separated by a colon:
  251. - a prefix
  252. - a unique part that will be created according to `org-id-method'.
  253. PREFIX can specify the prefix, the default is given by the variable
  254. `org-id-prefix'. However, if PREFIX is the symbol `none', don't use any
  255. prefix even if `org-id-prefix' specifies one.
  256. So a typical ID could look like \"Org:4nd91V40HI\"."
  257. (let* ((prefix (if (eq prefix 'none)
  258. ""
  259. (concat (or prefix org-id-prefix) ":")))
  260. unique)
  261. (if (equal prefix ":") (setq prefix ""))
  262. (cond
  263. ((eq org-id-method 'uuidgen)
  264. (setq unique (org-trim (shell-command-to-string "uuidgen"))))
  265. ((eq org-id-method 'org)
  266. (let* ((etime (org-id-reverse-string (org-id-time-to-b36)))
  267. (postfix (if org-id-include-domain
  268. (progn
  269. (require 'message)
  270. (concat "@" (message-make-fqdn))))))
  271. (setq unique (concat etime postfix))))
  272. (t (error "Invalid `org-id-method'")))
  273. (concat prefix unique)))
  274. (defun org-id-reverse-string (s)
  275. (mapconcat 'char-to-string (nreverse (string-to-list s)) ""))
  276. (defun org-id-int-to-b36-one-digit (i)
  277. "Turn an integer between 0 and 61 into a single character 0..9, A..Z, a..z."
  278. (cond
  279. ((< i 10) (+ ?0 i))
  280. ((< i 36) (+ ?a i -10))
  281. (t (error "Larger that 35"))))
  282. (defun org-id-b36-to-int-one-digit (i)
  283. "Turn a character 0..9, A..Z, a..z into a number 0..61.
  284. The input I may be a character, or a single-letter string."
  285. (and (stringp i) (setq i (string-to-char i)))
  286. (cond
  287. ((and (>= i ?0) (<= i ?9)) (- i ?0))
  288. ((and (>= i ?a) (<= i ?z)) (+ (- i ?a) 10))
  289. (t (error "Invalid b36 letter"))))
  290. (defun org-id-int-to-b36 (i &optional length)
  291. "Convert an integer to a base-36 number represented as a string."
  292. (let ((s ""))
  293. (while (> i 0)
  294. (setq s (concat (char-to-string
  295. (org-id-int-to-b36-one-digit (mod i 36))) s)
  296. i (/ i 36)))
  297. (setq length (max 1 (or length 1)))
  298. (if (< (length s) length)
  299. (setq s (concat (make-string (- length (length s)) ?0) s)))
  300. s))
  301. (defun org-id-b36-to-int (s)
  302. "Convert a base-36 string into the corresponding integer."
  303. (let ((r 0))
  304. (mapc (lambda (i) (setq r (+ (* r 36) (org-id-b36-to-int-one-digit i))))
  305. s)
  306. r))
  307. (defun org-id-time-to-b36 (&optional time)
  308. "Encode TIME as a 10-digit string.
  309. This string holds the time to micro-second accuracy, and can be decoded
  310. using `org-id-decode'."
  311. (setq time (or time (current-time)))
  312. (concat (org-id-int-to-b36 (nth 0 time) 4)
  313. (org-id-int-to-b36 (nth 1 time) 4)
  314. (org-id-int-to-b36 (or (nth 2 time) 0) 4)))
  315. (defun org-id-decode (id)
  316. "Split ID into the prefix and the time value that was used to create it.
  317. The return value is (prefix . time) where PREFIX is nil or a string,
  318. and time is the usual three-integer representation of time."
  319. (let (prefix time parts)
  320. (setq parts (org-split-string id ":"))
  321. (if (= 2 (length parts))
  322. (setq prefix (car parts) time (nth 1 parts))
  323. (setq prefix nil time (nth 0 parts)))
  324. (setq time (org-id-reverse-string time))
  325. (setq time (list (org-id-b36-to-int (substring time 0 4))
  326. (org-id-b36-to-int (substring time 4 8))
  327. (org-id-b36-to-int (substring time 8 12))))
  328. (cons prefix time)))
  329. ;; Storing ID locations (files)
  330. (defun org-id-update-id-locations (&optional files)
  331. "Scan relevant files for IDs.
  332. Store the relation between files and corresponding IDs.
  333. This will scan all agenda files, all associated archives, and all
  334. files currently mentioned in `org-id-locations'.
  335. When FILES is given, scan these files instead.
  336. When CHECK is given, prepare detailed information about duplicate IDs."
  337. (interactive)
  338. (if (not org-id-track-globally)
  339. (error "Please turn on `org-id-track-globally' if you want to track IDs.")
  340. (let ((files
  341. (or files
  342. (append
  343. ;; Agenda files and all associated archives
  344. (org-agenda-files t org-id-search-archives)
  345. ;; Explicit extra files
  346. (if (symbolp org-id-extra-files)
  347. (symbol-value org-id-extra-files)
  348. org-id-extra-files)
  349. ;; Files associated with live org-mode buffers
  350. (delq nil
  351. (mapcar (lambda (b)
  352. (with-current-buffer b
  353. (and (org-mode-p) (buffer-file-name))))
  354. (buffer-list)))
  355. ;; All files known to have IDs
  356. org-id-files)))
  357. org-agenda-new-buffers
  358. file nfiles tfile ids reg found id seen (ndup 0))
  359. (setq nfiles (length files))
  360. (while (setq file (pop files))
  361. (message "Finding ID locations (%d/%d files): %s"
  362. (- nfiles (length files)) nfiles file)
  363. (setq tfile (file-truename file))
  364. (when (and (file-exists-p file) (not (member tfile seen)))
  365. (push tfile seen)
  366. (setq ids nil)
  367. (with-current-buffer (org-get-agenda-file-buffer file)
  368. (save-excursion
  369. (save-restriction
  370. (widen)
  371. (goto-char (point-min))
  372. (while (re-search-forward "^[ \t]*:ID:[ \t]+\\(\\S-+\\)[ \t]*$"
  373. nil t)
  374. (setq id (org-match-string-no-properties 1))
  375. (if (member id found)
  376. (progn
  377. (message "Duplicate ID \"%s\", also in file %s"
  378. id (car (delq
  379. nil
  380. (mapcar
  381. (lambda (x)
  382. (if (member id (cdr x)) (car x)))
  383. reg))))
  384. (when (= ndup 0)
  385. (ding)
  386. (sit-for 2))
  387. (setq ndup (1+ ndup)))
  388. (push id found)
  389. (push id ids)))
  390. (push (cons (abbreviate-file-name file) ids) reg))))))
  391. (org-release-buffers org-agenda-new-buffers)
  392. (setq org-agenda-new-buffers nil)
  393. (setq org-id-locations reg)
  394. (setq org-id-files (mapcar 'car org-id-locations))
  395. (org-id-locations-save) ;; this function can also handle the alist form
  396. ;; now convert to a hash
  397. (setq org-id-locations (org-id-alist-to-hash org-id-locations))
  398. (if (> ndup 0)
  399. (message "WARNING: %d duplicate IDs found, check *Messages* buffer" ndup)
  400. (message "%d unique files scanned for IDs" (length org-id-files)))
  401. org-id-locations)))
  402. (defun org-id-locations-save ()
  403. "Save `org-id-locations' in `org-id-locations-file'."
  404. (when org-id-track-globally
  405. (let ((out (if (hash-table-p org-id-locations)
  406. (org-id-hash-to-alist org-id-locations)
  407. org-id-locations)))
  408. (with-temp-file org-id-locations-file
  409. (print out (current-buffer))))))
  410. (defun org-id-locations-load ()
  411. "Read the data from `org-id-locations-file'."
  412. (setq org-id-locations nil)
  413. (when org-id-track-globally
  414. (with-temp-buffer
  415. (condition-case nil
  416. (progn
  417. (insert-file-contents-literally org-id-locations-file)
  418. (goto-char (point-min))
  419. (setq org-id-locations (read (current-buffer))))
  420. (error
  421. (message "Could not read org-id-values from %s. Setting it to nil."
  422. org-id-locations-file))))
  423. (setq org-id-files (mapcar 'car org-id-locations))
  424. (setq org-id-locations (org-id-alist-to-hash org-id-locations))))
  425. (defun org-id-add-location (id file)
  426. "Add the ID with location FILE to the database of ID locations."
  427. ;; Only if global tracking is on, and when the buffer has a file
  428. (when (and org-id-track-globally id file)
  429. (unless org-id-locations (org-id-locations-load))
  430. (puthash id (abbreviate-file-name file) org-id-locations)
  431. (add-to-list 'org-id-files (abbreviate-file-name file))))
  432. (add-hook 'kill-emacs-hook 'org-id-locations-save)
  433. (defun org-id-hash-to-alist (hash)
  434. "Turn an org-id hash into an alist, so that it can be written to a file."
  435. (let (res x)
  436. (maphash
  437. (lambda (k v)
  438. (if (setq x (member v res))
  439. (setcdr x (cons k (cdr x)))
  440. (push (list v k) res)))
  441. hash)
  442. res))
  443. (defun org-id-alist-to-hash (list)
  444. "Turn an org-id location list into a hash table."
  445. (let ((res (make-hash-table
  446. :test 'equal
  447. :size (apply '+ (mapcar 'length list))))
  448. f i)
  449. (mapc
  450. (lambda (x)
  451. (setq f (car x))
  452. (mapc (lambda (i) (puthash i f res)) (cdr x)))
  453. list)
  454. res))
  455. (defun org-id-paste-tracker (txt &optional buffer-or-file)
  456. "Update any IDs in TXT and assign BUFFER-OR-FILE to them."
  457. (when org-id-track-globally
  458. (save-match-data
  459. (setq buffer-or-file (or buffer-or-file (current-buffer)))
  460. (when (bufferp buffer-or-file)
  461. (setq buffer-or-file (or (buffer-base-buffer buffer-or-file)
  462. buffer-or-file))
  463. (setq buffer-or-file (buffer-file-name buffer-or-file)))
  464. (when buffer-or-file
  465. (let ((fname (abbreviate-file-name buffer-or-file))
  466. (s 0))
  467. (while (string-match "^[ \t]*:ID:[ \t]+\\([^ \t\n\r]+\\)" txt s)
  468. (setq s (match-end 0))
  469. (org-id-add-location (match-string 1 txt) fname)))))))
  470. ;; Finding entries with specified id
  471. (defun org-id-find-id-file (id)
  472. "Query the id database for the file in which this ID is located."
  473. (unless org-id-locations (org-id-locations-load))
  474. (or (gethash id org-id-locations)
  475. ;; ball back on current buffer
  476. (buffer-file-name (or (buffer-base-buffer (current-buffer))
  477. (current-buffer)))))
  478. (defun org-id-find-id-in-file (id file &optional markerp)
  479. "Return the position of the entry ID in FILE.
  480. If that files does not exist, or if it does not contain this ID,
  481. return nil.
  482. The position is returned as a cons cell (file-name . position). With
  483. optional argument MARKERP, return the position as a new marker."
  484. (let (org-agenda-new-buffers m buf pos)
  485. (cond
  486. ((not file) nil)
  487. ((not (file-exists-p file)) nil)
  488. (t (with-current-buffer (setq buf (org-get-agenda-file-buffer file))
  489. (setq pos (org-find-entry-with-id id))
  490. (when pos
  491. (if markerp
  492. (move-marker (make-marker) pos buf)
  493. (cons file pos))))))))
  494. ;; id link type
  495. ;; Calling the following function is hard-coded into `org-store-link',
  496. ;; so we do have to add it to `org-store-link-functions'.
  497. (defun org-id-store-link ()
  498. "Store a link to the current entry, using it's ID."
  499. (interactive)
  500. (let* ((link (org-make-link "id:" (org-id-get-create)))
  501. (desc (save-excursion
  502. (org-back-to-heading t)
  503. (or (and (looking-at org-complex-heading-regexp)
  504. (if (match-end 4) (match-string 4) (match-string 0)))
  505. link))))
  506. (org-store-link-props :link link :description desc :type "id")
  507. link))
  508. (defun org-id-open (id)
  509. "Go to the entry with id ID."
  510. (org-mark-ring-push)
  511. (let ((m (org-id-find id 'marker)))
  512. (unless m
  513. (error "Cannot find entry with ID \"%s\"" id))
  514. (if (not (equal (current-buffer) (marker-buffer m)))
  515. (switch-to-buffer-other-window (marker-buffer m)))
  516. (goto-char m)
  517. (move-marker m nil)
  518. (org-show-context)))
  519. (org-add-link-type "id" 'org-id-open)
  520. (provide 'org-id)
  521. ;;; org-id.el ends here
  522. ;; arch-tag: e5abaca4-e16f-4b25-832a-540cfb63a712