- 2 Posts
- 3 Comments
Joined 2 years ago
Cake day: August 25th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Titusto Emacs•#2 [[bbb:OrgMeetup]] on Wed, Sep 13, 19:00-21:00 UTC+3, Europe/IstanbulEnglish1·2 years agoThank you for the summary of your last meeting, I learned about cool packages I didn’t know about.
TitusOPto Emacs•How to filter a dynamic block column view by only part of an property entryEnglish1·2 years agoThank you so much! I feel stupid I didn’t find that out. But I’m also very glad you told me – because now I can not only filter the year, but also keywords from a list of keywords in another property, using the curly brackets. That is wonderful and helps me a lot. Thanks again for answering and for being patient with a “blind” man!
Thank you for your advice and for looking into this!
I went through all the hooks, they just start:
org-superstar-mode prettify-symbols-alist org-auto-tangle-mode typo-mode
But I commented out almost everything in my config and found out it has to do with
mixed-pitch
. The solution:(use-package mixed-pitch :config (setq mixed-pitch-variable-pitch-cursor 'box))
When no setting is done, mixed-pitch automatically sets the cursor to 'bar. So my setting it to 'box by
cursor-type
was of no use for my org-mode buffers (with mixed-pitch). Phew! Now it works as I like it.Thanks again for your quick answer. It’s great that everything can be set to one’s liking in Emacs.