l3kn / org-fc

Spaced Repetition System for Emacs org-mode
https://www.leonrische.me/fc/index.html
GNU General Public License v3.0
259 stars 31 forks source link

Hide org-ellipsis in flip,rate mode #59

Open souew opened 3 years ago

souew commented 3 years ago

In flip mode all other org headings in the tree are collapsed, which creates "..." on the each line, sometime it even leads to a line break if "..." is too close to an edge. I think it visually clutters the interface and is not necessary. I did something like that: (add-hook 'org-fc-review-flip-mode-hook (lambda () (setq org-ellipsis " ") (org-mode-restart))) Which works, but it's ugly and not really a proper solution because I don't have org-fc-review-flip-exit-mode-hook to restore the settings.