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

前端 未结 3 1274
忘掉有多难
忘掉有多难 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条回答
  •  不要未来只要你来
    2021-01-11 13:51

    I used emacs variable customization, invoked with C-h v ediff-split-window-function to change the value. After clicking Save for future sessions the following was written to my .emacs:

    (custom-set-variables
    ...
     '(ediff-split-window-function (quote split-window-horizontally))
    ...)
    

    And it does exactly what I want: putting the two buffers side-by-side. And yes, emacs uses horizontal/vertical in the opposite of what you had in mind. If you read this question again, you will see the explanation, others were confused, too.

提交回复
热议问题