Function: org-read-property-name
org-read-property-name is a byte-compiled function defined in
org.el.gz.
Signature
(org-read-property-name)
Documentation
Read a property name.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-read-property-name ()
"Read a property name."
(let ((completion-ignore-case t)
(default-prop (or (and (org-at-property-p)
(match-string-no-properties 2))
org-last-set-property)))
(org-completing-read
(concat "Property"
(if default-prop (concat " [" default-prop "]") "")
": ")
(mapcar #'list (org-buffer-property-keys nil t t))
nil nil nil nil default-prop)))