1

我正在使用 mit gnu 方案附带的 edwin 编辑器。当我在我的 Debian 系统上使用以下命令“scheme -edwin -edit”打开它时,我得到了编辑器窗口,但它的字体非常小。

即使经过多次搜索,我也无法弄清楚如何更改编辑器的默认字体大小。我尝试了以下命令((ref-command set-default-font)“200”)但无济于事。我可以在这里找到参考http://courses.csail.mit.edu/6.844/spring05-6844/handouts/edwin.ini但这并没有多大帮助。

如何更改 edwin 中的字体大小?

4

1 回答 1

3

I had the same problem. I finally managed to do it by using the entire XLFD in my init file.:

((ref-command set-font) "-monotype-andale mono-medium-r-normal--16-0-0-0-c-0-iso8859-5")

Here is a link to emac's manual about fonts where they explain about XLFD:

http://www.gnu.org/software/emacs/manual/html_node/emacs/Fonts.html

You can use M-x font-apropos under edwin to search for fonts. And M-x set-font to set them.

C-h a is the command apropos. Where you can search, and get help on commands under edwin.

于 2014-06-06T12:43:25.020 回答