How can I get the compilation buffer on the bottom rather than on the right in Emacs 23?

后端 未结 3 1312
感动是毒
感动是毒 2021-01-04 05:22

I\'ve installed Emacs 23 and have found that the compilation buffer (when using M-x compile) appears in a different position than it did in Emacs 22. The currently open buff

相关标签:
3条回答
  • 2021-01-04 05:41

    The following worked best for me:

    ;; Split windows in Emacs 22 compatible way
    (setq split-height-threshold nil)
    (setq split-width-threshold most-positive-fixnum)
    
    0 讨论(0)
  • 2021-01-04 05:45

    It's probably the new split-window-preferred-function variable and split-window-sensibly function. Emacs now tries to figure out if it should split vertically or horizontally based on the window size (I assume you have a wide window). Try setting the split-width-threshold variable to nil.

    0 讨论(0)
  • 2021-01-04 05:55

    This works for me in emacs 23 on linux :

    (setq split-width-threshold most-positive-fixnum)
    
    0 讨论(0)
提交回复
热议问题