Function: org-id-copy

org-id-copy is an autoloaded, interactive and byte-compiled function defined in org-id.el.gz.

Signature

(org-id-copy)

Documentation

Copy the ID of the entry at point to the kill ring.

Create an ID if necessary.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-id.el.gz
;;;###autoload
(defun org-id-copy ()
  "Copy the ID of the entry at point to the kill ring.
Create an ID if necessary."
  (interactive)
  (org-kill-new (org-id-get nil 'create)))