@@ -1042,8 +1042,6 @@ Config *nvim-tree-config*
10421042 | nvim_tree.config.hijack_directories |
10431043 • {update_focused_file}? (`nvim_tree.config.update_focused_file` )
10441044 | nvim_tree.config.update_focused_file |
1045- • {system_open}? (`nvim_tree.config.system_open` )
1046- | nvim_tree.config.system_open |
10471045 • {git} ? (`nvim_tree.config.git` )
10481046 | nvim_tree.config.git |
10491047 • {diagnostics} ? (`nvim_tree.config.diagnostics` )
@@ -1499,30 +1497,6 @@ Config: update_focused_file *nvim-tree-config-update-focused-file*
14991497
15001498
15011499
1502- ==============================================================================
1503- Config: system_open *nvim-tree-config-system-open*
1504-
1505- *nvim_tree.config.system_open*
1506- Open files or directories via the OS.
1507-
1508- Nvim:
1509- • `>= ` 0.10 uses | vim.ui.open() | unless {cmd} is specified
1510- • `<` 0.10 calls external {cmd} :
1511- • UNIX: `xdg- open `
1512- • macOS: `open `
1513- • Windows: `cmd`
1514-
1515- Once nvim-tree minimum Nvim version is updated to 0.10, this configuration
1516- will no longer be necessary and will be removed.
1517-
1518- Fields: ~
1519- • {cmd} ? (`string ` ) The open command itself
1520- • {args} ? (`string []` , default: `{}` or `{ "/c", "start", '""' }` on
1521- windows) Optional argument list. Leave empty for OS specific
1522- default.
1523-
1524-
1525-
15261500==============================================================================
15271501Config: git *nvim-tree-config-git*
15281502
@@ -2155,10 +2129,6 @@ Following is the default configuration, see |nvim_tree.config| for details. >lua
21552129 },
21562130 exclude = false,
21572131 },
2158- system_open = {
2159- cmd = "",
2160- args = {},
2161- },
21622132 git = {
21632133 enable = true,
21642134 show_on_dirs = true,
@@ -2935,7 +2905,7 @@ run.cmd({node}) *nvim_tree.api.node.run.cmd()*
29352905 • {node} (`nvim_tree.api.Node?` ) directory or file
29362906
29372907run.system({node} ) *nvim_tree.api.node.run.system()*
2938- Execute | nvim_tree.config.system_open | .
2908+ Open with the system default handler: | vim.ui.open() | .
29392909
29402910 Parameters: ~
29412911 • {node} (`nvim_tree.api.Node?` ) directory or file
0 commit comments