xwl / cal-china-x

chinese localization, prioritized holiday highlight, lunar, horoscope, zodiac, etc.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

modeline显示不全

vinurs opened this issue · comments

好像跟英文节日一起显示的时候状态栏有时候不能显示完全
image

你可以调整 mode line 长度,比如 (setq calendar-right-margin 120)

不过它不是 user customizable 变量,我看了一下,它会用于计算日历的初始布局。最好是在加载模块后再设置:

(require 'calendar)
(setq calendar-right-margin 120)

或者直接修改函数 calendar-update-mode-line

好了,谢谢