-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
org-agenda-custom commands extra blank line #10
Comments
Hi, What you're seeing is an empty It was fairly simple, so I made a patch for this and submitted it to the org-mode mailing list. I think they will probably accept it, but we'll see. |
Hi, But your solution is better this way. |
Oh, well, I think we can do that too. I'll look into it. Thanks. |
I think that should do it. :) |
Fixes alphapapa#10. Thanks to @measpear for suggesting.
When using the org-super-agenda with org-agenda-custom commands extra blank line occurs before the org-super-agenda :name property (due to overriding header variable ?).
Is is possible to prevent this ?
For example, using the following code snippet, extra blank line occurs before Projects heading.
(let ((org-agenda-custom-commands
'(("u" "Super view"
((agenda "" ((org-super-agenda-groups
'((:name "Today"
:time-grid t)))))
(todo "" ((org-agenda-overriding-header "")
(org-super-agenda-groups
'((:name "Projects"
:children todo)
(:discard (:anything t)))))))))))
(org-agenda nil "u"))
The text was updated successfully, but these errors were encountered: