meow-edit / meow

Yet another modal editing on Emacs / 猫态编辑
GNU General Public License v3.0
1.09k stars 127 forks source link

Cannot perform `text-scale-adjust` on the meow cheat sheet (`C-c ?`) #458

Open matt-y opened 1 year ago

matt-y commented 1 year ago

I don't see very well and often have to enlarge things within emacs. Typically I do this with text-scale-adjust via the C-x C-+ or the global-text-scale-adjust through C-x C-M-+.

I am not able to adjust the text scale on the cheat sheet buffer. Is there an easy fix or config change that will allow me to adjust the text scale in this buffer?

As always, thank you for the hard work on meow.

DogLooksGood commented 1 year ago

I think it doesn't work because the face inherit fixed-pitch face, which indicates a monospaced font will be used. If it's just too small or large, you can set the face attribute

(set-face-attribute 'meow-cheatsheet-command nil :height 100) ;; 100 is 100%

There could be a better option which I don't know.

jgarte commented 1 year ago

Should this be labeled as a bug to be fixed?