Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我打开待办事项列表或议程时,它会在一个小缓冲区中打开(占据我屏幕的一半)。如何更改我的 dotfile,以便在调用时org-agenda它占据整个屏幕?
org-agenda
从 Org 版本 8.3 开始,您可以设置org-agenda-window-setup为 only-window.
org-agenda-window-setup
only-window
org-agenda只需在运行后添加delete-other-windows其后建议即可 删除其他窗口: (advice-add 'org-agenda :after #'delete-other-windows).
delete-other-windows
(advice-add 'org-agenda :after #'delete-other-windows)