EpsilonVector
EpsilonVector

Reputation: 4053

How to designate a window to be the target for all links in Emacs?

I'm trying to create a setup where I have 2 windows in the left side of the frame, containing Org-mode buffers, and a big window on the right side of the frame, which I want to be the target for all the links in the left side buffers.

How do I force Org-mode links to open in that right side window?

Upvotes: 4

Views: 118

Answers (1)

sabof
sabof

Reputation: 8192

You can do

M-: (set-window-dedicated-p (selected-window) t)

on the windows you want to remain unchanged.

Upvotes: 5

Related Questions