右键对齐emacs中的电池和时钟

时间:2014-03-16 10:15:51

标签: emacs elisp

所以我在emacs模式行中获得了电池状态和时钟:

  

(显示电池模式1)

     

(显示时间模式1)

无论如何,我可以将它们对齐到模式线的左侧?

2 个答案:

答案 0 :(得分:1)

不容易。

display-battery-modedisplay-time-mode都通过修改global-mode-string来运作。您可以尝试从后者中移除相应的对象并将其添加到最左侧的mode-line-format,但我不认为这是您的时间的好用。

答案 1 :(得分:0)

如果您不需要其他模式行信息,可以这样做。请将此作为自定义模式行的示例。

(setq-default mode-line-format
    '("" battery-mode-line-string display-time-string)
)

结果:

enter image description here