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.
[C-c C-o]
[[file://filename.org|filename]]
How to
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).
org-link-frame-setup
(file . find-file-other-window)
(file . find-file)