When using two frames in emacs, how do I prevent the compilation buffer from showing up in both?

前端 未结 1 2086
Happy的楠姐
Happy的楠姐 2020-12-23 18:27

I work with two monitors, and often use emacs with two frames open; one for each monitor. each frame is split into two side-by-side windows, like so:

 a | b          


        
相关标签:
1条回答
  • 2020-12-23 19:12
    (setq-default display-buffer-reuse-frames t)
    

    From the documentation:

    Non-nil means `display-buffer' should reuse frames. If the buffer in question is already displayed in a frame, raise that frame.

    0 讨论(0)
提交回复
热议问题