fix #4901: suppress strange behavior of org agenda commands
With current hacks involving `org-agenda-files`, one cannot use org agenda commands like clock in or change the entry's state to done, etc. Specifically, the mangled behavior observed at #4901. This commit fixes those problems around `org-agenda` buffer specific commands. For more details, please refer to https://github.com/hlissner/doom-emacs/issues/4759#issuecomment-822100632.
This commit is contained in:
parent
f621ff8047
commit
1e1838d29b
1 changed files with 3 additions and 5 deletions
|
@ -618,13 +618,11 @@ mutating hooks on exported output, like formatters."
|
||||||
|
|
||||||
(defun +org--restart-mode-h ()
|
(defun +org--restart-mode-h ()
|
||||||
"Restart `org-mode', but only once."
|
"Restart `org-mode', but only once."
|
||||||
|
(quiet! (org-mode-restart))
|
||||||
|
(delq! (current-buffer) org-agenda-new-buffers)
|
||||||
(remove-hook 'doom-switch-buffer-hook #'+org--restart-mode-h
|
(remove-hook 'doom-switch-buffer-hook #'+org--restart-mode-h
|
||||||
'local)
|
'local)
|
||||||
(delq! (current-buffer) org-agenda-new-buffers)
|
(run-hooks 'find-file-hook))
|
||||||
(let ((file buffer-file-name)
|
|
||||||
(inhibit-redisplay t))
|
|
||||||
(kill-buffer)
|
|
||||||
(find-file file)))
|
|
||||||
|
|
||||||
(add-hook! 'org-agenda-finalize-hook
|
(add-hook! 'org-agenda-finalize-hook
|
||||||
(defun +org-exclude-agenda-buffers-from-workspace-h ()
|
(defun +org-exclude-agenda-buffers-from-workspace-h ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue