mattfidler / tabbar-ruler.el

Tabbar Ruler Mode
54 stars 10 forks source link

Tabbar did not work #33

Open saccohuo opened 8 years ago

saccohuo commented 8 years ago

It did not work in my Emacs. Emacs w32 24.5, Win7.(Not cygwin version) I installed it, but there is only a gray bar at the top of my window which is the position of tabbar. My Configuration is here in my init.el.

(setq tabbar-ruler-global-tabbar t)     ; If you want tabbar
;; (setq tabbar-ruler-global-ruler nil) ; if you want a global ruler
;; (setq tabbar-ruler-popup-menu nil) ; If you want a popup menu.
;; (setq tabbar-ruler-popup-toolbar nil) ; If you want a popup toolbar
(setq tabbar-ruler-popup-scrollbar t) ;show scroll-bar on mouse-move
(require 'tabbar)
(require 'tabbar-ruler)
(tabbar-ruler-group-by-projectile-project)

And here is my result. My result

mattfidler commented 8 years ago

Hm. I'm unclear why this is happening. I use windows 32 with emacs 24.5 on Windows 7 and everything works fine for me using your configuration. Unless there is a way I can reproduce this, I cannot debug it.

saccohuo commented 8 years ago

@mattfidler I'm sorry for not explain it clearly. I use Win7 64bit system, and Emacsw32, but I do not think it is the point. May be another package conflict with it?

mattfidler commented 8 years ago

Probably. But I'm unsure which package.

As a test case, see if this works:

(setq tabbar-ruler-global-tabbar t)
(require 'tabbar)
(require 'tabbar-ruler)
;;(tabbar-ruler-group-by-projectile-project)
mattfidler commented 8 years ago

That is closer to how I have this configured.

saccohuo commented 8 years ago

@mattfidler Thx! Now it works, as you post. But I wanna know why it works.

mattfidler commented 8 years ago

Add back group by projectile, see if it works

saccohuo commented 8 years ago

@mattfidler It dose works. But I cannot find my scroll-bar even if I enable scroll-bar-mode.