diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-01-24 18:37:44 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-01-24 18:37:44 -0500 |
commit | 0ba8df3f2d31d24f86deadc4369b7330efbac8c3 (patch) | |
tree | e94554441bc6748af0099f666aea3f7fdba4e8b6 | |
parent | 4aa426e0827ab5e8eccff76fced24670f04e2e12 (diff) | |
download | bog-0ba8df3f2d31d24f86deadc4369b7330efbac8c3.tar.gz |
Replace org-icompleting-read with completing-read
The development version of Org (what will be 9.0) has marked
org-icompleting-read as obsolete.
-rw-r--r-- | bog.el | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -334,7 +334,7 @@ Otherwise, prompt for CATEGORY." (interactive (list (or (equal current-prefix-arg '(4)) (and bog--citekey-cache - (intern (org-icompleting-read + (intern (completing-read "Category: " (mapcar (lambda (c) (symbol-name (car c))) bog--citekey-cache))))))) @@ -451,7 +451,7 @@ If NO-CONTEXT is non-nil, immediately fall back." (defun bog-select-citekey (citekeys) "Prompt for citekey from CITEKEYS." - (org-icompleting-read "Select citekey: " citekeys)) + (completing-read "Select citekey: " citekeys)) ;;;; Other @@ -573,7 +573,7 @@ If the citekey prompt is slow to appear, consider enabling the (mapcar (lambda (path) (cons (file-name-nondirectory path) path)) citekey-files)) - (fname (org-icompleting-read "Select file: " fname-paths))) + (fname (completing-read "Select file: " fname-paths))) (cdr (assoc-string fname fname-paths))))))) (defun bog-citekey-files (citekey) @@ -625,8 +625,8 @@ If the citekey prompt is slow to appear, consider enabling the (0 (setq staged-file (org-iread-file-name "Select file to rename: "))) (1 (setq staged-file (car staged-files))) (t (setq staged-file (expand-file-name - (org-icompleting-read "Select file to rename: " - staged-file-names) + (completing-read "Select file to rename: " + staged-file-names) bog-stage-directory)))) (bog--rename-file-to-citekey staged-file citekey))) @@ -648,7 +648,7 @@ fails." (cons (file-name-nondirectory path) path)) (bog-all-citekey-files)))) (bog--rename-file-to-citekey - (cdr (assoc-string (org-icompleting-read "Rename file: " file-paths) + (cdr (assoc-string (completing-read "Rename file: " file-paths) file-paths)) (bog-citekey-from-surroundings-or-all no-context)))) @@ -1100,7 +1100,7 @@ level `bog-refile-maxlevel' are considered." (let ((note-paths (mapcar (lambda (path) (cons (file-name-nondirectory path) path)) (bog-notes)))) - (cdr (assoc-string (org-icompleting-read "File: " note-paths) + (cdr (assoc-string (completing-read "File: " note-paths) note-paths)))) (defmacro bog--with-search-lprops (&rest body) |