org.el (org-read-date-minibuffer-local-map): Check if we are at the beginning of the prompt, not if we are after a whitespace
* org.el (org-read-date-minibuffer-local-map): Check if we are at the beginning of the prompt, not if we are after a whitespace. Bind C-. to `calendar-goto-today'.
This commit is contained in:
parent
3dd3100794
commit
253b65c091
|
@ -16074,9 +16074,13 @@ So these are more for recording a certain time/date."
|
|||
(set-keymap-parent map minibuffer-local-map)
|
||||
(org-defkey map (kbd ".")
|
||||
(lambda () (interactive)
|
||||
(if (= (char-before) 32)
|
||||
;; Are we at the beginning of the prompt?
|
||||
(if (looking-back "^[^:]+: ")
|
||||
(org-eval-in-calendar '(calendar-goto-today))
|
||||
(insert "."))))
|
||||
(org-defkey map (kbd "C-.")
|
||||
(lambda () (interactive)
|
||||
(org-eval-in-calendar '(calendar-goto-today))))
|
||||
(org-defkey map [(meta shift left)]
|
||||
(lambda () (interactive)
|
||||
(org-eval-in-calendar '(calendar-backward-month 1))))
|
||||
|
|
Loading…
Reference in New Issue