mattfidler / tabbar-ruler.el

Tabbar Ruler Mode
54 stars 10 forks source link

Strange Warning but everything works! #34

Closed rhoit closed 8 years ago

rhoit commented 8 years ago

I just updated repo, and mode-icons too.

Warning (emacs): Cannot start mode-icons-mode, icons will be missing from tabs.

screenshot82

commit for tabbar-ruler I'm using

5f3bb41 - Make sure not to display two icons.

commit for mode-icon I'm using.

5e15076 - Add missing return of mod
mattfidler commented 8 years ago

This has to do with your configuration. You have to make mode-icons path available to tabbar-ruler to remove this warning. The offending code is:

(when tabbar-ruler-use-mode-icons
  (require 'mode-icons nil t)
  (if (fboundp #'mode-icons-mode)
      (mode-icons-mode)
    (warn "Cannot start mode-icons-mode, icons will be missing from tabs.")))
rhoit commented 8 years ago

@mattfidler thanx i had loaded the mode-icons after tabbar!