cute-jumper / ace-pinyin

Jump to Chinese character by pinyin with `avy' or `ace-jump-mode`
87 stars 19 forks source link

Make mode-line lighter optional #8

Closed girzel closed 7 years ago

girzel commented 7 years ago

I like this mode, but don't really need "AcePY" in the mode line. Please consider making an ace-pinyin-lighter option that we can set to nil if we want.

Thanks!

cute-jumper commented 7 years ago

You can disable the lighter using diminish.el. If you don't want to install diminish.el, you can use the code below (extracted from diminish.el):

(let ((minor (assq 'ace-pinyin-mode minor-mode-alist)))
  (setcdr minor (list "")))
girzel commented 7 years ago

Will do, thanks.