-
I want to open file in finder from nvim-tree. I find resolved issue #2430, but I dont understand which mapping open file using system_open. |
Beta Was this translation helpful? Give feedback.
Answered by
dro-sh
Apr 24, 2025
Replies: 1 comment 6 replies
-
I setup {
system_open = {
cmd = "open",
args = { "-R" },
},
} According vim.ui.open docs there is no ability to pass |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
dro-sh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I setup
system_open
next only for macos:According vim.ui.open docs there is no ability to pass
-R
option ofopen
command to open file in finder.