|
@@ -627,7 +627,7 @@ Where possible, use the standard interface for changing this line."
|
|
|
(t
|
|
|
(setq allowed (org-property-get-allowed-values pom key 'table))
|
|
|
(if allowed
|
|
|
- (setq nval (org-ido-completing-read "Value: " allowed nil t))
|
|
|
+ (setq nval (org-icompleting-read "Value: " allowed nil t))
|
|
|
(setq nval (read-string "Edit: " value)))
|
|
|
(setq nval (org-trim nval))
|
|
|
(when (not (equal nval value))
|
|
@@ -904,7 +904,7 @@ interactive function org-columns-new.")
|
|
|
(let ((n (org-columns-current-column))
|
|
|
(editp (and prop (assoc prop org-columns-current-fmt-compiled)))
|
|
|
cell)
|
|
|
- (setq prop (org-ido-completing-read
|
|
|
+ (setq prop (org-icompleting-read
|
|
|
"Property: " (mapcar 'list (org-buffer-property-keys t nil t))
|
|
|
nil nil prop))
|
|
|
(setq title (read-string (concat "Column title [" prop "]: ") (or title prop)))
|
|
@@ -912,7 +912,7 @@ interactive function org-columns-new.")
|
|
|
(if (string-match "\\S-" width)
|
|
|
(setq width (string-to-number width))
|
|
|
(setq width nil))
|
|
|
- (setq fmt (org-ido-completing-read "Summary [none]: "
|
|
|
+ (setq fmt (org-icompleting-read "Summary [none]: "
|
|
|
(mapcar (lambda (x) (list (symbol-name (cadr x)))) org-columns-compile-map)
|
|
|
nil t))
|
|
|
(setq fmt (intern fmt)
|
|
@@ -1443,7 +1443,7 @@ and tailing newline characters."
|
|
|
(interactive)
|
|
|
(when (featurep 'xemacs) (org-columns-quit))
|
|
|
(let ((defaults '(:name "columnview" :hlines 1))
|
|
|
- (id (org-ido-completing-read
|
|
|
+ (id (org-icompleting-read
|
|
|
"Capture columns (local, global, entry with :ID: property) [local]: "
|
|
|
(append '(("global") ("local"))
|
|
|
(mapcar 'list (org-property-values "ID"))))))
|