org-todo to change TODO to DEFERRED (from my org-todo-keywords)No backtrace because it does not break things apart.
My org-todo-keywords appearing for selection. In not-roam org files it works perfectly.
Another set of keywords, probably Doom Emacs' default ones.
Thank you very much!
I cannot reproduce (it's using my set of org-todo-keywords)
How are you customizing org-todo-keywords? Are they file specific?
In .doom.d/config.el:
For org-mode:
(use-package! org
:defer t
:config
(setq org-agenda-files (list my-org-dir my-roam-dir)
;; ... lots of org mode configuration ...
org-todo-keywords '((sequence "TODO(t)" "NEXT(n)" "WAITING(w@)" "|" "DONE(d@)" "CANCELLED(c@)" "DEFERRED(r@)"))
;; ... lots more ....
))
For org-roam:
(use-package! org-roam
:defer t
:config
(setq org-roam-directory my-roam-dir
org-roam-index-file (concat my-roam-dir "roam-index.org")))
I have similar sections for org-ref, org-roam-bibtex, deft and so on. Variables starting with my- refer to directories or files.
Are you sure the problem is caused by Org-roam? Could you comment out the use-package block for Org-roam and try again?
Very strange. It must be something with the order packages are loaded. I tried commenting everything except org-mode and org-roam. Tried uncommenting one block at a time and now I can't reproduce the problem :-|
I'll make some more tests and close the bug if cannot reproduce it.
Well, I have used everything as usual (mu4e, org-roam, etc) and the problem is gone. It seems Emacs got lost somehow. Thanks for your time guys, specially for the excelent work!
Most helpful comment
Well, I have used everything as usual (
mu4e,org-roam, etc) and the problem is gone. It seems Emacs got lost somehow. Thanks for your time guys, specially for the excelent work!