How to let Org-mode open a link like [[file://file.org]] in current window instead of default in other window?

前端 未结 2 1753
轻奢々
轻奢々 2021-02-04 11:07

I hope to use [C-c C-o] to open a link like [[file://filename.org|filename]] in current window, instead of the default in other window.

How to

2条回答
  •  温柔的废话
    2021-02-04 11:55

    You need to change the value of org-link-frame-setup. Default value contains the cons (file . find-file-other-window). You may replace it by (file . find-file).

提交回复
热议问题