|
|
@@ -9159,10 +9159,12 @@ Use TAB to complete link prefixes, then RET for type-specific completion support
|
|
|
|
|
|
(defun org-completing-read (&rest args)
|
|
|
"Completing-read with SPACE being a normal character."
|
|
|
- (let ((minibuffer-local-completion-map
|
|
|
+ (let ((enable-recursive-minibuffers t)
|
|
|
+ (minibuffer-local-completion-map
|
|
|
(copy-keymap minibuffer-local-completion-map)))
|
|
|
(org-defkey minibuffer-local-completion-map " " 'self-insert-command)
|
|
|
(org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
|
|
|
+ (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
|
|
|
(apply 'org-icompleting-read args)))
|
|
|
|
|
|
(defun org-completing-read-no-i (&rest args)
|