punassuming / ranger.el

Bringing the goodness of ranger to dired!
697 stars 51 forks source link

Add hook to disable scroll-bar only in ranger? #205

Open ianyepan opened 5 years ago

ianyepan commented 5 years ago

Unlike most people, I actually enjoy the scroll-bar mode in GUI Emacs. However, when I use ranger I typically don't need the scroll-bar. I had this in my init file:

(add-hook 'ranger-mode-hook (lambda () (scroll-bar-mode -1)))

which to be fair, successfully disables scrollbars on entering a ranger buffer. Problem is when I exit ranger, the scrollbars are never enabled again...

punassuming commented 5 years ago

What about if you but a hook on mode change and toggle depending on the mode of the buffer?

ianyepan commented 5 years ago

I'm not that proficient in Elisp, do you happen to have something in mind?