how to make ui align correctly #832
Unanswered
danielgoldin
asked this question in
Q&A
Replies: 3 comments 1 reply
-
It's because you're using a proportional font, and the UI depends on a monospace for alignment. There may be ways for us to fix this so more general, but it would depend on a feature unavailable before Emacs 30 IIRC. Bottom line for now: you want to change your font, at least for completion, to fix it. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ah, I thought as much. Any advice -- or example code -- for fixing just for completion. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Thanks. That didn't work but I am happy with Inconsolata font as the default font.
On 2024-05-25 at 12:34 -07, bdarcus ***@***.***> wrote...
… Looks like you need to customize the minibuffer-prompt face.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am a non-programmer using citar for academic papers. I can't seem to get the citar ui to align corectly. I'm running emacs 19. Here are my settings:
(use-package citar
:no-require
:custom
(org-cite-global-bibliography '("~/org-roam/bibliography/refernces.bib"))
(org-cite-insert-processor 'citar)
(org-cite-follow-processor 'citar)
(org-cite-activate-processor 'citar)
(citar-bibliography org-cite-global-bibliography)
;; optional: org-cite-insert is also bound to C-c C-x C-@
:bind
(:map org-mode-map :package org ("C-c b" . #'org-cite-insert))
:hook
(LaTeX-mode . citar-capf-setup)
(org-mode . citar-capf-setup))
Here's what my ui looks like:
Thanks for nay help.
Beta Was this translation helpful? Give feedback.
All reactions