roman / golden-ratio.el

Automatic resizing of Emacs windows to the golden ratio
MIT License
590 stars 38 forks source link

golden-ratio does not work nicely with eshell #37

Closed tuhdo closed 10 years ago

tuhdo commented 10 years ago

For other buffers, it was fine. But when I switched to eshell, the eshell's window resized back and forth as well as blinked a few times. This is annoying. This plugin would be perfect if this issue is fixed.

This issue happens when golden-ratio-mode is enabled. For manually resizing, there's no problem.

tuhdo commented 10 years ago

It turned out that was my mistake. I disabled these settings:

(require 'em-smart) (setq eshell-where-to-jump 'begin) (setq eshell-review-quick-commands nil) (setq eshell-smart-space-goes-to-end t) (eshell-smart-initialize)

And everything works fine. Sorry for the failed report.