zk-phi / sublimity

Smooth-scrolling and minimap like sublime editor
496 stars 26 forks source link

sublimity-attractive & helm #27

Closed mclearc closed 9 years ago

mclearc commented 9 years ago

This is a nice plugin but is there a way to keep sublimity from working on the helm buffer when it opens?

zk-phi commented 9 years ago

set sublimity-attractive-centering-width locally nil in the helm buffer.

zk-phi commented 9 years ago

I don't use helm so I'm not sure but it should have something like helm-mode-hook thus you can hook a function like:

(add-hook 'helm-mode-hook
  (lambda ()
    (setq-local sublimity-attractive-centering-width nil)))
mclearc commented 9 years ago

Looks like that worked. Thanks! 👍