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.
Todo リストまたはアジェンダを開くと、ミニバッファで開きます (画面の半分を占めます)。org-agenda呼び出したときにドットファイルが画面全体を占めるように変更するにはどうすればよいですか?
org-agenda
Org バージョン 8.3 以降では、 に設定できorg-agenda-window-setupます only-window。
org-agenda-window-setup
only-window
after advice: を org-agenda追加して、実行後に他のウィンドウを削除するだけです。delete-other-windows(advice-add 'org-agenda :after #'delete-other-windows)
delete-other-windows
(advice-add 'org-agenda :after #'delete-other-windows)