ediff-split-window-function horizontal==vertical?

前端 未结 3 1273
忘掉有多难
忘掉有多难 2021-01-11 13:32

Emacs 23.1.1 Ediff 2.81.2 on CentOs 6

Prior to any customization, Ediff would, by default, split the windows horizontally (one on top of the other).

I wante

3条回答
  •  旧时难觅i
    2021-01-11 13:59

    While it doesn't quite answer your problem, you could also use a function to specify whether to split vertically or horizontally depending on window dimensions:

    (setq ediff-split-window-function 'split-window-sensibly)
    

    split-window-sensibly is built-in.

提交回复
热议问题