Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d41b4ca013 | ||
|
|
2d6e64dd8c | ||
|
|
cb57691536 | ||
|
|
70d7377c3f | ||
|
|
ea55ef1203 | ||
|
|
43c3c36c7a | ||
|
|
d43ab67d0e | ||
|
|
6fbcb5a892 | ||
|
|
e962e97cab | ||
|
|
42340952af | ||
|
|
210478677c |
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -67,7 +67,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
nvim_version: [ stable, nightly ]
|
nvim_version: [ stable, nightly ]
|
||||||
luals_version: [ 3.9.1 ]
|
luals_version: [ 3.10.5 ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
".": "1.6.0"
|
".": "1.6.1"
|
||||||
}
|
}
|
||||||
|
|||||||
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.6.1](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.6.0...nvim-tree-v1.6.1) (2024-09-09)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2794:** sshfs compatibility ([#2893](https://github.com/nvim-tree/nvim-tree.lua/issues/2893)) ([2d6e64d](https://github.com/nvim-tree/nvim-tree.lua/commit/2d6e64dd8c45a86f312552b7a47eef2c8623a25c))
|
||||||
|
* **#2868:** windows: do not visit unenumerable directories such as Application Data ([#2874](https://github.com/nvim-tree/nvim-tree.lua/issues/2874)) ([2104786](https://github.com/nvim-tree/nvim-tree.lua/commit/210478677cb9d672c4265deb0e9b59d58b675bd4))
|
||||||
|
* **#2878:** nowrapscan prevents move from root ([#2880](https://github.com/nvim-tree/nvim-tree.lua/issues/2880)) ([4234095](https://github.com/nvim-tree/nvim-tree.lua/commit/42340952af598a08ab80579d067b6da72a9e6d29))
|
||||||
|
* **#2879:** remove unnecessary tree window width setting to prevent unnecessary :wincmd = ([#2881](https://github.com/nvim-tree/nvim-tree.lua/issues/2881)) ([d43ab67](https://github.com/nvim-tree/nvim-tree.lua/commit/d43ab67d0eb4317961c5e9d15fffe908519debe0))
|
||||||
|
|
||||||
## [1.6.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.5.0...nvim-tree-v1.6.0) (2024-08-10)
|
## [1.6.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.5.0...nvim-tree-v1.6.0) (2024-08-10)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -955,7 +955,6 @@ Value can be `"none"`, `"icon"`, `"name"` or `"all"`
|
|||||||
*nvim-tree.renderer.highlight_hidden*
|
*nvim-tree.renderer.highlight_hidden*
|
||||||
Highlight icons and/or names for hidden files (dotfiles) using the
|
Highlight icons and/or names for hidden files (dotfiles) using the
|
||||||
`NvimTreeHiddenFileHL` highlight group.
|
`NvimTreeHiddenFileHL` highlight group.
|
||||||
Requires |nvim-tree.hidden.enable|
|
|
||||||
Value can be `"none"`, `"icon"`, `"name"` or `"all"`
|
Value can be `"none"`, `"icon"`, `"name"` or `"all"`
|
||||||
Type: `string`, Default `"none"`
|
Type: `string`, Default `"none"`
|
||||||
|
|
||||||
@@ -1089,8 +1088,7 @@ Icon order and sign column precedence:
|
|||||||
|
|
||||||
*nvim-tree.renderer.icons.show.hidden*
|
*nvim-tree.renderer.icons.show.hidden*
|
||||||
Show a hidden icon, see |renderer.icons.hidden_placement|
|
Show a hidden icon, see |renderer.icons.hidden_placement|
|
||||||
Requires |hidden.enable| `= true`
|
Type: `boolean`, Default: `false`
|
||||||
Type: `boolean`, Default: `true`
|
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.show.diagnostics*
|
*nvim-tree.renderer.icons.show.diagnostics*
|
||||||
Show a diagnostics status icon, see |renderer.icons.diagnostics_placement|
|
Show a diagnostics status icon, see |renderer.icons.diagnostics_placement|
|
||||||
@@ -1681,10 +1679,8 @@ to avoid breaking configurations due to internal breaking changes.
|
|||||||
The api is separated in multiple modules, which can be accessed with
|
The api is separated in multiple modules, which can be accessed with
|
||||||
`api.<module>.<function>`
|
`api.<module>.<function>`
|
||||||
|
|
||||||
Functions that needs a tree node parameter are exposed with an abstraction
|
Functions accepting {node} as their first argument will use the node under the
|
||||||
that injects the node from the cursor position in the tree when calling
|
cursor when that argument is not present or nil.
|
||||||
the function. It will use the node you pass as an argument in priority if it
|
|
||||||
exists.
|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
6.1 API TREE *nvim-tree-api.tree*
|
6.1 API TREE *nvim-tree-api.tree*
|
||||||
@@ -1810,9 +1806,11 @@ tree.collapse_all({keep_buffers}) *nvim-tree-api.tree.collapse_all()*
|
|||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {keep_buffers} (boolean) do not collapse nodes with open buffers.
|
• {keep_buffers} (boolean) do not collapse nodes with open buffers.
|
||||||
|
|
||||||
tree.expand_all() *nvim-tree-api.tree.expand_all()*
|
tree.expand_all({node}) *nvim-tree-api.tree.expand_all()*
|
||||||
Recursively expand all nodes in the tree.
|
Recursively expand all nodes under the tree root or specified folder.
|
||||||
Folder: only the nodes underneath that folder.
|
|
||||||
|
Parameters: ~
|
||||||
|
• {node} (Node|nil) folder
|
||||||
|
|
||||||
*nvim-tree-api.tree.toggle_enable_filters()*
|
*nvim-tree-api.tree.toggle_enable_filters()*
|
||||||
tree.toggle_enable_filters()
|
tree.toggle_enable_filters()
|
||||||
@@ -1887,86 +1885,86 @@ fs.create({node}) *nvim-tree-api.fs.create()*
|
|||||||
Multiple directories/files may be created e.g. `foo/bar/baz`
|
Multiple directories/files may be created e.g. `foo/bar/baz`
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) parent, uses the parent of a file.
|
• {node} (Node|nil) parent, uses the parent of a file.
|
||||||
|
|
||||||
fs.remove({node}) *nvim-tree-api.fs.remove()*
|
fs.remove({node}) *nvim-tree-api.fs.remove()*
|
||||||
Delete a file or folder from the file system.
|
Delete a file or folder from the file system.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.trash({node}) *nvim-tree-api.fs.trash()*
|
fs.trash({node}) *nvim-tree-api.fs.trash()*
|
||||||
Trash a file or folder as per |nvim-tree.trash|
|
Trash a file or folder as per |nvim-tree.trash|
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.rename_node({node}) *nvim-tree-api.fs.rename_node()*
|
fs.rename_node({node}) *nvim-tree-api.fs.rename_node()*
|
||||||
Prompt to rename a file or folder.
|
Prompt to rename a file or folder.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.rename({node}) *nvim-tree-api.fs.rename()*
|
fs.rename({node}) *nvim-tree-api.fs.rename()*
|
||||||
Prompt to rename a file or folder by name.
|
Prompt to rename a file or folder by name.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.rename_basename({node}) *nvim-tree-api.fs.rename_basename()*
|
fs.rename_basename({node}) *nvim-tree-api.fs.rename_basename()*
|
||||||
Prompt to rename a file or folder by name with extension omitted.
|
Prompt to rename a file or folder by name with extension omitted.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.rename_sub({node}) *nvim-tree-api.fs.rename_sub()*
|
fs.rename_sub({node}) *nvim-tree-api.fs.rename_sub()*
|
||||||
Prompt to rename a file or folder by absolute path with name omitted.
|
Prompt to rename a file or folder by absolute path with name omitted.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.rename_full({node}) *nvim-tree-api.fs.rename_full()*
|
fs.rename_full({node}) *nvim-tree-api.fs.rename_full()*
|
||||||
Prompt to rename a file or folder by absolute path.
|
Prompt to rename a file or folder by absolute path.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.cut({node}) *nvim-tree-api.fs.cut()*
|
fs.cut({node}) *nvim-tree-api.fs.cut()*
|
||||||
Cut a file or folder to the nvim-tree clipboard.
|
Cut a file or folder to the nvim-tree clipboard.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.paste({node}) *nvim-tree-api.fs.paste()*
|
fs.paste({node}) *nvim-tree-api.fs.paste()*
|
||||||
Paste a file or folder from the nvim-tree clipboard.
|
Paste a file or folder from the nvim-tree clipboard.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) destination folder, uses the parent of a file.
|
• {node} (Node|nil) destination folder, uses the parent of a file.
|
||||||
|
|
||||||
fs.copy.node({node}) *nvim-tree-api.fs.copy.node()*
|
fs.copy.node({node}) *nvim-tree-api.fs.copy.node()*
|
||||||
Copy a file or folder from the nvim-tree clipboard.
|
Copy a file or folder from the nvim-tree clipboard.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.copy.absolute_path({node}) *nvim-tree-api.fs.copy.absolute_path()*
|
fs.copy.absolute_path({node}) *nvim-tree-api.fs.copy.absolute_path()*
|
||||||
Copy the absolute path of a file or folder to the system clipboard.
|
Copy the absolute path of a file or folder to the system clipboard.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.copy.filename({node}) *nvim-tree-api.fs.copy.filename()*
|
fs.copy.filename({node}) *nvim-tree-api.fs.copy.filename()*
|
||||||
Copy the name of a file or folder to the system clipboard.
|
Copy the name of a file or folder to the system clipboard.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.copy.relative_path({node}) *nvim-tree-api.fs.copy.relative_path()*
|
fs.copy.relative_path({node}) *nvim-tree-api.fs.copy.relative_path()*
|
||||||
Copy the path of a file or folder relative to the tree root to the system
|
Copy the path of a file or folder relative to the tree root to the system
|
||||||
clipboard.
|
clipboard.
|
||||||
|
|
||||||
Parameters: ~
|
Parameters: ~
|
||||||
• {node} (Node) file or folder
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
fs.clear_clipboard() *nvim-tree-api.fs.clear_clipboard()*
|
fs.clear_clipboard() *nvim-tree-api.fs.clear_clipboard()*
|
||||||
Clear the nvim-tree clipboard.
|
Clear the nvim-tree clipboard.
|
||||||
@@ -1977,34 +1975,37 @@ fs.print_clipboard() *nvim-tree-api.fs.print_clipboard()*
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
6.3 API NODE *nvim-tree-api.node*
|
6.3 API NODE *nvim-tree-api.node*
|
||||||
|
|
||||||
node.open.edit() *nvim-tree-api.node.open.edit()*
|
Parameters: ~
|
||||||
|
• {node} (Node|nil) file or folder
|
||||||
|
|
||||||
|
node.open.edit({node}) *nvim-tree-api.node.open.edit()*
|
||||||
File: open as per |nvim-tree.actions.open_file|
|
File: open as per |nvim-tree.actions.open_file|
|
||||||
Folder: expand or collapse
|
Folder: expand or collapse
|
||||||
Root: change directory up
|
Root: change directory up
|
||||||
|
|
||||||
*nvim-tree-api.node.open.replace_tree_buffer()*
|
*nvim-tree-api.node.open.replace_tree_buffer()*
|
||||||
node.open.replace_tree_buffer()
|
node.open.replace_tree_buffer({node})
|
||||||
|nvim-tree-api.node.edit()|, file will be opened in place: in the
|
|nvim-tree-api.node.edit()|, file will be opened in place: in the
|
||||||
nvim-tree window.
|
nvim-tree window.
|
||||||
|
|
||||||
*nvim-tree-api.node.open.no_window_picker()*
|
*nvim-tree-api.node.open.no_window_picker()*
|
||||||
node.open.no_window_picker()
|
node.open.no_window_picker({node})
|
||||||
|nvim-tree-api.node.edit()|, window picker will never be used as per
|
|nvim-tree-api.node.edit()|, window picker will never be used as per
|
||||||
|nvim-tree.actions.open_file.window_picker.enable| `false`
|
|nvim-tree.actions.open_file.window_picker.enable| `false`
|
||||||
|
|
||||||
node.open.vertical() *nvim-tree-api.node.open.vertical()*
|
node.open.vertical({node}) *nvim-tree-api.node.open.vertical()*
|
||||||
|nvim-tree-api.node.edit()|, file will be opened in a new vertical split.
|
|nvim-tree-api.node.edit()|, file will be opened in a new vertical split.
|
||||||
|
|
||||||
node.open.horizontal() *nvim-tree-api.node.open.horizontal()*
|
node.open.horizontal({node}) *nvim-tree-api.node.open.horizontal()*
|
||||||
|nvim-tree-api.node.edit()|, file will be opened in a new horizontal split.
|
|nvim-tree-api.node.edit()|, file will be opened in a new horizontal split.
|
||||||
|
|
||||||
*nvim-tree-api.node.open.toggle_group_empty()*
|
*nvim-tree-api.node.open.toggle_group_empty()*
|
||||||
node.open.toggle_group_empty()
|
node.open.toggle_group_empty({node})
|
||||||
Toggle |nvim-tree.renderer.group_empty| for a specific folder.
|
Toggle |nvim-tree.renderer.group_empty| for a specific folder.
|
||||||
Does nothing on files.
|
Does nothing on files.
|
||||||
Needs |nvim-tree.renderer.group_empty| set.
|
Needs |nvim-tree.renderer.group_empty| set.
|
||||||
|
|
||||||
node.open.drop() *nvim-tree-api.node.open.drop()*
|
node.open.drop({node}) *nvim-tree-api.node.open.drop()*
|
||||||
Switch to window with selected file if it exists.
|
Switch to window with selected file if it exists.
|
||||||
Open file otherwise.
|
Open file otherwise.
|
||||||
See: `:h :drop`.
|
See: `:h :drop`.
|
||||||
@@ -2013,11 +2014,11 @@ node.open.drop() *nvim-tree-api.node.open.drop()*
|
|||||||
Folder: expand or collapse
|
Folder: expand or collapse
|
||||||
Root: change directory up
|
Root: change directory up
|
||||||
|
|
||||||
node.open.tab() *nvim-tree-api.node.open.tab()*
|
node.open.tab({node}) *nvim-tree-api.node.open.tab()*
|
||||||
|nvim-tree-api.node.edit()|, file will be opened in a new tab.
|
|nvim-tree-api.node.edit()|, file will be opened in a new tab.
|
||||||
|
|
||||||
*nvim-tree-api.node.open.tab_drop()*
|
*nvim-tree-api.node.open.tab_drop()*
|
||||||
node.open.tab_drop()
|
node.open.tab_drop({node})
|
||||||
Switch to tab containing window with selected file if it exists.
|
Switch to tab containing window with selected file if it exists.
|
||||||
Open file in new tab otherwise.
|
Open file in new tab otherwise.
|
||||||
|
|
||||||
@@ -2025,102 +2026,103 @@ node.open.tab_drop()
|
|||||||
Folder: expand or collapse
|
Folder: expand or collapse
|
||||||
Root: change directory up
|
Root: change directory up
|
||||||
|
|
||||||
node.open.preview() *nvim-tree-api.node.open.preview()*
|
node.open.preview({node}) *nvim-tree-api.node.open.preview()*
|
||||||
|nvim-tree-api.node.edit()|, file buffer will have |bufhidden| set to `delete`.
|
|nvim-tree-api.node.edit()|, file buffer will have |bufhidden| set to `delete`.
|
||||||
|
|
||||||
node.open.preview_no_picker() *nvim-tree-api.node.open.preview_no_picker()*
|
*nvim-tree-api.node.open.preview_no_picker()*
|
||||||
|
node.open.preview_no_picker({node})
|
||||||
|nvim-tree-api.node.edit()|, file buffer will have |bufhidden| set to `delete`.
|
|nvim-tree-api.node.edit()|, file buffer will have |bufhidden| set to `delete`.
|
||||||
window picker will never be used as per
|
window picker will never be used as per
|
||||||
|nvim-tree.actions.open_file.window_picker.enable| `false`
|
|nvim-tree.actions.open_file.window_picker.enable| `false`
|
||||||
|
|
||||||
node.navigate.git.next() *nvim-tree-api.node.navigate.git.next()*
|
node.navigate.git.next({node}) *nvim-tree-api.node.navigate.git.next()*
|
||||||
Navigate to the next item showing git status.
|
Navigate to the next item showing git status.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.git.next_recursive()*
|
*nvim-tree-api.node.navigate.git.next_recursive()*
|
||||||
node.navigate.git.next_recursive()
|
node.navigate.git.next_recursive({node})
|
||||||
Alternative to |nvim-tree-api.node.navigate.git.next()| that navigates to
|
Alternative to |nvim-tree-api.node.navigate.git.next()| that navigates to
|
||||||
the next file showing git status, recursively.
|
the next file showing git status, recursively.
|
||||||
Needs |nvim-tree.git.show_on_dirs| set.
|
Needs |nvim-tree.git.show_on_dirs| set.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.git.next_skip_gitignored()*
|
*nvim-tree-api.node.navigate.git.next_skip_gitignored()*
|
||||||
node.navigate.git.next_skip_gitignored()
|
node.navigate.git.next_skip_gitignored({node})
|
||||||
Same as |node.navigate.git.next()|, but skips gitignored files.
|
Same as |node.navigate.git.next()|, but skips gitignored files.
|
||||||
|
|
||||||
node.navigate.git.prev() *nvim-tree-api.node.navigate.git.prev()*
|
node.navigate.git.prev({node}) *nvim-tree-api.node.navigate.git.prev()*
|
||||||
Navigate to the previous item showing git status.
|
Navigate to the previous item showing git status.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.git.prev_recursive()*
|
*nvim-tree-api.node.navigate.git.prev_recursive()*
|
||||||
node.navigate.git.prev_recursive()
|
node.navigate.git.prev_recursive({node})
|
||||||
Alternative to |nvim-tree-api.node.navigate.git.prev()| that navigates to
|
Alternative to |nvim-tree-api.node.navigate.git.prev()| that navigates to
|
||||||
the previous file showing git status, recursively.
|
the previous file showing git status, recursively.
|
||||||
Needs |nvim-tree.git.show_on_dirs| set.
|
Needs |nvim-tree.git.show_on_dirs| set.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.git.prev_skip_gitignored()*
|
*nvim-tree-api.node.navigate.git.prev_skip_gitignored()*
|
||||||
node.navigate.git.prev_skip_gitignored()
|
node.navigate.git.prev_skip_gitignored({node})
|
||||||
Same as |node.navigate.git.prev()|, but skips gitignored files.
|
Same as |node.navigate.git.prev()|, but skips gitignored files.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.diagnostics.next()*
|
*nvim-tree-api.node.navigate.diagnostics.next()*
|
||||||
node.navigate.diagnostics.next()
|
node.navigate.diagnostics.next({node})
|
||||||
Navigate to the next item showing diagnostic status.
|
Navigate to the next item showing diagnostic status.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.diagnostics.next_recursive()*
|
*nvim-tree-api.node.navigate.diagnostics.next_recursive()*
|
||||||
node.navigate.diagnostics.next_recursive()
|
node.navigate.diagnostics.next_recursive({node})
|
||||||
Alternative to |nvim-tree-api.node.navigate.diagnostics.next()| that
|
Alternative to |nvim-tree-api.node.navigate.diagnostics.next()| that
|
||||||
navigates to the next file showing diagnostic status, recursively.
|
navigates to the next file showing diagnostic status, recursively.
|
||||||
Needs |nvim-tree.diagnostics.show_on_dirs| set.
|
Needs |nvim-tree.diagnostics.show_on_dirs| set.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.diagnostics.prev()*
|
*nvim-tree-api.node.navigate.diagnostics.prev()*
|
||||||
node.navigate.diagnostics.prev()
|
node.navigate.diagnostics.prev({node})
|
||||||
Navigate to the next item showing diagnostic status.
|
Navigate to the next item showing diagnostic status.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.diagnostics.prev_recursive()*
|
*nvim-tree-api.node.navigate.diagnostics.prev_recursive()*
|
||||||
node.navigate.diagnostics.prev_recursive()
|
node.navigate.diagnostics.prev_recursive({node})
|
||||||
Alternative to |nvim-tree-api.node.navigate.diagnostics.prev()| that
|
Alternative to |nvim-tree-api.node.navigate.diagnostics.prev()| that
|
||||||
navigates to the previous file showing diagnostic status, recursively.
|
navigates to the previous file showing diagnostic status, recursively.
|
||||||
Needs |nvim-tree.diagnostics.show_on_dirs| set.
|
Needs |nvim-tree.diagnostics.show_on_dirs| set.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.opened.next()*
|
*nvim-tree-api.node.navigate.opened.next()*
|
||||||
node.navigate.opened.next()
|
node.navigate.opened.next({node})
|
||||||
Navigate to the next |bufloaded()| item.
|
Navigate to the next |bufloaded()| item.
|
||||||
See |nvim-tree.renderer.highlight_opened_files|
|
See |nvim-tree.renderer.highlight_opened_files|
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.opened.prev()*
|
*nvim-tree-api.node.navigate.opened.prev()*
|
||||||
node.navigate.opened.prev()
|
node.navigate.opened.prev({node})
|
||||||
Navigate to the previous |bufloaded()| item.
|
Navigate to the previous |bufloaded()| item.
|
||||||
See |nvim-tree.renderer.highlight_opened_files|
|
See |nvim-tree.renderer.highlight_opened_files|
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.sibling.next()*
|
*nvim-tree-api.node.navigate.sibling.next()*
|
||||||
node.navigate.sibling.next()
|
node.navigate.sibling.next({node})
|
||||||
Navigate to the next node in the current node's folder, wraps.
|
Navigate to the next node in the current node's folder, wraps.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.sibling.prev()*
|
*nvim-tree-api.node.navigate.sibling.prev()*
|
||||||
node.navigate.sibling.prev()
|
node.navigate.sibling.prev({node})
|
||||||
Navigate to the previous node in the current node's folder, wraps.
|
Navigate to the previous node in the current node's folder, wraps.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.sibling.first()*
|
*nvim-tree-api.node.navigate.sibling.first()*
|
||||||
node.navigate.sibling.first()
|
node.navigate.sibling.first({node})
|
||||||
Navigate to the first node in the current node's folder.
|
Navigate to the first node in the current node's folder.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.sibling.last()*
|
*nvim-tree-api.node.navigate.sibling.last()*
|
||||||
node.navigate.sibling.last()
|
node.navigate.sibling.last({node})
|
||||||
Navigate to the last node in the current node's folder.
|
Navigate to the last node in the current node's folder.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.parent()*
|
*nvim-tree-api.node.navigate.parent()*
|
||||||
node.navigate.parent()
|
node.navigate.parent({node})
|
||||||
Navigate to the parent folder of the current node.
|
Navigate to the parent folder of the current node.
|
||||||
|
|
||||||
*nvim-tree-api.node.navigate.parent_close()*
|
*nvim-tree-api.node.navigate.parent_close()*
|
||||||
node.navigate.parent_close()
|
node.navigate.parent_close({node})
|
||||||
|api.node.navigate.parent()|, closing that folder.
|
|api.node.navigate.parent()|, closing that folder.
|
||||||
|
|
||||||
node.show_info_popup() *nvim-tree-api.node.show_info_popup()*
|
node.show_info_popup({node}) *nvim-tree-api.node.show_info_popup()*
|
||||||
Open a popup window showing: fullpath, size, accessed, modified, created.
|
Open a popup window showing: fullpath, size, accessed, modified, created.
|
||||||
|
|
||||||
node.run.cmd() *nvim-tree-api.node.run.cmd()*
|
node.run.cmd({node}) *nvim-tree-api.node.run.cmd()*
|
||||||
Enter |cmdline| with the full path of the node and the cursor at the start
|
Enter |cmdline| with the full path of the node and the cursor at the start
|
||||||
of the line.
|
of the line.
|
||||||
|
|
||||||
node.run.system() *nvim-tree-api.node.run.system()*
|
node.run.system({node}) *nvim-tree-api.node.run.system()*
|
||||||
Execute |nvim-tree.system_open|
|
Execute |nvim-tree.system_open|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
@@ -2195,8 +2197,8 @@ marks.navigate.prev() *nvim-tree-api.marks.navigate.prev()*
|
|||||||
As per |nvim-tree-api.marks.navigate.next()|
|
As per |nvim-tree-api.marks.navigate.next()|
|
||||||
|
|
||||||
marks.navigate.select() *nvim-tree-api.marks.navigate.select()*
|
marks.navigate.select() *nvim-tree-api.marks.navigate.select()*
|
||||||
Prompts for selection of a marked node as per
|
Prompts for selection of a marked node, sorted by absolute paths.
|
||||||
|nvim-tree-api.marks.navigate.next()|
|
A folder will be focused, a file will be opened.
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
6.8 API CONFIG *nvim-tree-api.config*
|
6.8 API CONFIG *nvim-tree-api.config*
|
||||||
@@ -2298,7 +2300,8 @@ Single left mouse mappings can be achieved via `<LeftRelease>`.
|
|||||||
|
|
||||||
Single right / middle mouse mappings will require changes to |mousemodel| or |mouse|.
|
Single right / middle mouse mappings will require changes to |mousemodel| or |mouse|.
|
||||||
|
|
||||||
You may execute your own functions as well as |nvim-tree-api| functions e.g. >
|
|vim.keymap.set()| {rhs} is a `(function|string)` thus it may be necessary to
|
||||||
|
define your own function to map complex functionality e.g. >
|
||||||
|
|
||||||
local function print_node_path()
|
local function print_node_path()
|
||||||
local api = require('nvim-tree.api')
|
local api = require('nvim-tree.api')
|
||||||
|
|||||||
@@ -840,7 +840,6 @@ function M.setup(conf)
|
|||||||
require("nvim-tree.view").setup(opts)
|
require("nvim-tree.view").setup(opts)
|
||||||
require("nvim-tree.lib").setup(opts)
|
require("nvim-tree.lib").setup(opts)
|
||||||
require("nvim-tree.renderer").setup(opts)
|
require("nvim-tree.renderer").setup(opts)
|
||||||
require("nvim-tree.marks").setup(opts)
|
|
||||||
require("nvim-tree.buffers").setup(opts)
|
require("nvim-tree.buffers").setup(opts)
|
||||||
require("nvim-tree.help").setup(opts)
|
require("nvim-tree.help").setup(opts)
|
||||||
require("nvim-tree.watcher").setup(opts)
|
require("nvim-tree.watcher").setup(opts)
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ local log = require "nvim-tree.log"
|
|||||||
local view = require "nvim-tree.view"
|
local view = require "nvim-tree.view"
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local reload = require "nvim-tree.explorer.reload"
|
|
||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
local Iterator = require "nvim-tree.iterators.node-iterator"
|
||||||
|
|
||||||
@@ -13,7 +12,8 @@ local running = {}
|
|||||||
---Find a path in the tree, expand it and focus it
|
---Find a path in the tree, expand it and focus it
|
||||||
---@param path string relative or absolute
|
---@param path string relative or absolute
|
||||||
function M.fn(path)
|
function M.fn(path)
|
||||||
if not core.get_explorer() or not view.is_visible() then
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer or not view.is_visible() then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -32,7 +32,7 @@ function M.fn(path)
|
|||||||
|
|
||||||
-- refresh the contents of all parents, expanding groups as needed
|
-- refresh the contents of all parents, expanding groups as needed
|
||||||
if utils.get_node_from_path(path_real) == nil then
|
if utils.get_node_from_path(path_real) == nil then
|
||||||
reload.refresh_parent_nodes_for_path(vim.fn.fnamemodify(path_real, ":h"))
|
explorer:refresh_parent_nodes_for_path(vim.fn.fnamemodify(path_real, ":h"))
|
||||||
end
|
end
|
||||||
|
|
||||||
local line = core.get_nodes_starting_line()
|
local line = core.get_nodes_starting_line()
|
||||||
|
|||||||
@@ -9,14 +9,38 @@ local reloaders = require "nvim-tree.actions.reloaders"
|
|||||||
|
|
||||||
local find_file = require("nvim-tree.actions.finders.find-file").fn
|
local find_file = require("nvim-tree.actions.finders.find-file").fn
|
||||||
|
|
||||||
local M = {
|
---@enum ACTION
|
||||||
config = {},
|
local ACTION = {
|
||||||
|
copy = "copy",
|
||||||
|
cut = "cut",
|
||||||
}
|
}
|
||||||
|
|
||||||
local clipboard = {
|
---@class Clipboard to handle all actions.fs clipboard API
|
||||||
cut = {},
|
---@field config table hydrated user opts.filters
|
||||||
copy = {},
|
---@field private explorer Explorer
|
||||||
}
|
---@field private data table<ACTION, Node[]>
|
||||||
|
local Clipboard = {}
|
||||||
|
|
||||||
|
---@param opts table user options
|
||||||
|
---@param explorer Explorer
|
||||||
|
---@return Clipboard
|
||||||
|
function Clipboard:new(opts, explorer)
|
||||||
|
local o = {
|
||||||
|
explorer = explorer,
|
||||||
|
data = {
|
||||||
|
[ACTION.copy] = {},
|
||||||
|
[ACTION.cut] = {},
|
||||||
|
},
|
||||||
|
config = {
|
||||||
|
filesystem_watchers = opts.filesystem_watchers,
|
||||||
|
actions = opts.actions,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
setmetatable(o, self)
|
||||||
|
self.__index = self
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
---@param source string
|
---@param source string
|
||||||
---@param destination string
|
---@param destination string
|
||||||
@@ -85,11 +109,11 @@ end
|
|||||||
|
|
||||||
---@param source string
|
---@param source string
|
||||||
---@param dest string
|
---@param dest string
|
||||||
---@param action_type string
|
---@param action ACTION
|
||||||
---@param action_fn fun(source: string, dest: string)
|
---@param action_fn fun(source: string, dest: string)
|
||||||
---@return boolean|nil -- success
|
---@return boolean|nil -- success
|
||||||
---@return string|nil -- error message
|
---@return string|nil -- error message
|
||||||
local function do_single_paste(source, dest, action_type, action_fn)
|
local function do_single_paste(source, dest, action, action_fn)
|
||||||
local dest_stats
|
local dest_stats
|
||||||
local success, errmsg, errcode
|
local success, errmsg, errcode
|
||||||
local notify_source = notify.render_path(source)
|
local notify_source = notify.render_path(source)
|
||||||
@@ -98,14 +122,14 @@ local function do_single_paste(source, dest, action_type, action_fn)
|
|||||||
|
|
||||||
dest_stats, errmsg, errcode = vim.loop.fs_stat(dest)
|
dest_stats, errmsg, errcode = vim.loop.fs_stat(dest)
|
||||||
if not dest_stats and errcode ~= "ENOENT" then
|
if not dest_stats and errcode ~= "ENOENT" then
|
||||||
notify.error("Could not " .. action_type .. " " .. notify_source .. " - " .. (errmsg or "???"))
|
notify.error("Could not " .. action .. " " .. notify_source .. " - " .. (errmsg or "???"))
|
||||||
return false, errmsg
|
return false, errmsg
|
||||||
end
|
end
|
||||||
|
|
||||||
local function on_process()
|
local function on_process()
|
||||||
success, errmsg = action_fn(source, dest)
|
success, errmsg = action_fn(source, dest)
|
||||||
if not success then
|
if not success then
|
||||||
notify.error("Could not " .. action_type .. " " .. notify_source .. " - " .. (errmsg or "???"))
|
notify.error("Could not " .. action .. " " .. notify_source .. " - " .. (errmsg or "???"))
|
||||||
return false, errmsg
|
return false, errmsg
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -123,7 +147,7 @@ local function do_single_paste(source, dest, action_type, action_fn)
|
|||||||
vim.ui.input(input_opts, function(new_dest)
|
vim.ui.input(input_opts, function(new_dest)
|
||||||
utils.clear_prompt()
|
utils.clear_prompt()
|
||||||
if new_dest then
|
if new_dest then
|
||||||
do_single_paste(source, new_dest, action_type, action_fn)
|
do_single_paste(source, new_dest, action, action_fn)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
else
|
else
|
||||||
@@ -137,7 +161,7 @@ local function do_single_paste(source, dest, action_type, action_fn)
|
|||||||
vim.ui.input(input_opts, function(new_dest)
|
vim.ui.input(input_opts, function(new_dest)
|
||||||
utils.clear_prompt()
|
utils.clear_prompt()
|
||||||
if new_dest then
|
if new_dest then
|
||||||
do_single_paste(source, new_dest, action_type, action_fn)
|
do_single_paste(source, new_dest, action, action_fn)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
@@ -165,37 +189,42 @@ local function toggle(node, clip)
|
|||||||
notify.info(notify_node .. " added to clipboard.")
|
notify.info(notify_node .. " added to clipboard.")
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.clear_clipboard()
|
---Clear copied and cut
|
||||||
clipboard.cut = {}
|
function Clipboard:clear_clipboard()
|
||||||
clipboard.copy = {}
|
self.data[ACTION.copy] = {}
|
||||||
|
self.data[ACTION.cut] = {}
|
||||||
notify.info "Clipboard has been emptied."
|
notify.info "Clipboard has been emptied."
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Copy one node
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.copy(node)
|
function Clipboard:copy(node)
|
||||||
utils.array_remove(clipboard.cut, node)
|
utils.array_remove(self.data[ACTION.cut], node)
|
||||||
toggle(node, clipboard.copy)
|
toggle(node, self.data[ACTION.copy])
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Cut one node
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.cut(node)
|
function Clipboard:cut(node)
|
||||||
utils.array_remove(clipboard.copy, node)
|
utils.array_remove(self.data[ACTION.copy], node)
|
||||||
toggle(node, clipboard.cut)
|
toggle(node, self.data[ACTION.cut])
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Paste cut or cop
|
||||||
|
---@private
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@param action_type string
|
---@param action ACTION
|
||||||
---@param action_fn fun(source: string, dest: string)
|
---@param action_fn fun(source: string, dest: string)
|
||||||
local function do_paste(node, action_type, action_fn)
|
function Clipboard:do_paste(node, action, action_fn)
|
||||||
node = lib.get_last_group_node(node)
|
node = lib.get_last_group_node(node)
|
||||||
local explorer = core.get_explorer()
|
local explorer = core.get_explorer()
|
||||||
if node.name == ".." and explorer then
|
if node.name == ".." and explorer then
|
||||||
node = explorer
|
node = explorer
|
||||||
end
|
end
|
||||||
local clip = clipboard[action_type]
|
local clip = self.data[action]
|
||||||
if #clip == 0 then
|
if #clip == 0 then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@@ -204,7 +233,7 @@ local function do_paste(node, action_type, action_fn)
|
|||||||
local stats, errmsg, errcode = vim.loop.fs_stat(destination)
|
local stats, errmsg, errcode = vim.loop.fs_stat(destination)
|
||||||
if not stats and errcode ~= "ENOENT" then
|
if not stats and errcode ~= "ENOENT" then
|
||||||
log.line("copy_paste", "do_paste fs_stat '%s' failed '%s'", destination, errmsg)
|
log.line("copy_paste", "do_paste fs_stat '%s' failed '%s'", destination, errmsg)
|
||||||
notify.error("Could not " .. action_type .. " " .. notify.render_path(destination) .. " - " .. (errmsg or "???"))
|
notify.error("Could not " .. action .. " " .. notify.render_path(destination) .. " - " .. (errmsg or "???"))
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
local is_dir = stats and stats.type == "directory"
|
local is_dir = stats and stats.type == "directory"
|
||||||
@@ -214,11 +243,11 @@ local function do_paste(node, action_type, action_fn)
|
|||||||
|
|
||||||
for _, _node in ipairs(clip) do
|
for _, _node in ipairs(clip) do
|
||||||
local dest = utils.path_join { destination, _node.name }
|
local dest = utils.path_join { destination, _node.name }
|
||||||
do_single_paste(_node.absolute_path, dest, action_type, action_fn)
|
do_single_paste(_node.absolute_path, dest, action, action_fn)
|
||||||
end
|
end
|
||||||
|
|
||||||
clipboard[action_type] = {}
|
self.data[action] = {}
|
||||||
if not M.config.filesystem_watchers.enable then
|
if not self.config.filesystem_watchers.enable then
|
||||||
reloaders.reload_explorer()
|
reloaders.reload_explorer()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -246,26 +275,27 @@ local function do_cut(source, destination)
|
|||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Paste cut (if present) or copy (if present)
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.paste(node)
|
function Clipboard:paste(node)
|
||||||
if clipboard.cut[1] ~= nil then
|
if self.data[ACTION.cut][1] ~= nil then
|
||||||
do_paste(node, "cut", do_cut)
|
self:do_paste(node, ACTION.cut, do_cut)
|
||||||
else
|
elseif self.data[ACTION.copy][1] ~= nil then
|
||||||
do_paste(node, "copy", do_copy)
|
self:do_paste(node, ACTION.copy, do_copy)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.print_clipboard()
|
function Clipboard:print_clipboard()
|
||||||
local content = {}
|
local content = {}
|
||||||
if #clipboard.cut > 0 then
|
if #self.data[ACTION.cut] > 0 then
|
||||||
table.insert(content, "Cut")
|
table.insert(content, "Cut")
|
||||||
for _, node in pairs(clipboard.cut) do
|
for _, node in pairs(self.data[ACTION.cut]) do
|
||||||
table.insert(content, " * " .. (notify.render_path(node.absolute_path)))
|
table.insert(content, " * " .. (notify.render_path(node.absolute_path)))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if #clipboard.copy > 0 then
|
if #self.data[ACTION.copy] > 0 then
|
||||||
table.insert(content, "Copy")
|
table.insert(content, "Copy")
|
||||||
for _, node in pairs(clipboard.copy) do
|
for _, node in pairs(self.data[ACTION.copy]) do
|
||||||
table.insert(content, " * " .. (notify.render_path(node.absolute_path)))
|
table.insert(content, " * " .. (notify.render_path(node.absolute_path)))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -274,10 +304,10 @@ function M.print_clipboard()
|
|||||||
end
|
end
|
||||||
|
|
||||||
---@param content string
|
---@param content string
|
||||||
local function copy_to_clipboard(content)
|
function Clipboard:copy_to_reg(content)
|
||||||
local clipboard_name
|
local clipboard_name
|
||||||
local reg
|
local reg
|
||||||
if M.config.actions.use_system_clipboard == true then
|
if self.config.actions.use_system_clipboard == true then
|
||||||
clipboard_name = "system"
|
clipboard_name = "system"
|
||||||
reg = "+"
|
reg = "+"
|
||||||
else
|
else
|
||||||
@@ -298,18 +328,18 @@ local function copy_to_clipboard(content)
|
|||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.copy_filename(node)
|
function Clipboard:copy_filename(node)
|
||||||
copy_to_clipboard(node.name)
|
self:copy_to_reg(node.name)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.copy_basename(node)
|
function Clipboard:copy_basename(node)
|
||||||
local basename = vim.fn.fnamemodify(node.name, ":r")
|
local basename = vim.fn.fnamemodify(node.name, ":r")
|
||||||
copy_to_clipboard(basename)
|
self:copy_to_reg(basename)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.copy_path(node)
|
function Clipboard:copy_path(node)
|
||||||
local absolute_path = node.absolute_path
|
local absolute_path = node.absolute_path
|
||||||
local cwd = core.get_cwd()
|
local cwd = core.get_cwd()
|
||||||
if cwd == nil then
|
if cwd == nil then
|
||||||
@@ -318,33 +348,28 @@ function M.copy_path(node)
|
|||||||
|
|
||||||
local relative_path = utils.path_relative(absolute_path, cwd)
|
local relative_path = utils.path_relative(absolute_path, cwd)
|
||||||
local content = node.nodes ~= nil and utils.path_add_trailing(relative_path) or relative_path
|
local content = node.nodes ~= nil and utils.path_add_trailing(relative_path) or relative_path
|
||||||
copy_to_clipboard(content)
|
self:copy_to_reg(content)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.copy_absolute_path(node)
|
function Clipboard:copy_absolute_path(node)
|
||||||
local absolute_path = node.absolute_path
|
local absolute_path = node.absolute_path
|
||||||
local content = node.nodes ~= nil and utils.path_add_trailing(absolute_path) or absolute_path
|
local content = node.nodes ~= nil and utils.path_add_trailing(absolute_path) or absolute_path
|
||||||
copy_to_clipboard(content)
|
self:copy_to_reg(content)
|
||||||
end
|
end
|
||||||
|
|
||||||
---Node is cut. Will not be copied.
|
---Node is cut. Will not be copied.
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.is_cut(node)
|
function Clipboard:is_cut(node)
|
||||||
return vim.tbl_contains(clipboard.cut, node)
|
return vim.tbl_contains(self.data[ACTION.cut], node)
|
||||||
end
|
end
|
||||||
|
|
||||||
---Node is copied. Will not be cut.
|
---Node is copied. Will not be cut.
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.is_copied(node)
|
function Clipboard:is_copied(node)
|
||||||
return vim.tbl_contains(clipboard.copy, node)
|
return vim.tbl_contains(self.data[ACTION.copy], node)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
return Clipboard
|
||||||
M.config.filesystem_watchers = opts.filesystem_watchers
|
|
||||||
M.config.actions = opts.actions
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,13 +1,11 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.copy_paste = require "nvim-tree.actions.fs.copy-paste"
|
|
||||||
M.create_file = require "nvim-tree.actions.fs.create-file"
|
M.create_file = require "nvim-tree.actions.fs.create-file"
|
||||||
M.remove_file = require "nvim-tree.actions.fs.remove-file"
|
M.remove_file = require "nvim-tree.actions.fs.remove-file"
|
||||||
M.rename_file = require "nvim-tree.actions.fs.rename-file"
|
M.rename_file = require "nvim-tree.actions.fs.rename-file"
|
||||||
M.trash = require "nvim-tree.actions.fs.trash"
|
M.trash = require "nvim-tree.actions.fs.trash"
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.copy_paste.setup(opts)
|
|
||||||
M.remove_file.setup(opts)
|
M.remove_file.setup(opts)
|
||||||
M.rename_file.setup(opts)
|
M.rename_file.setup(opts)
|
||||||
M.trash.setup(opts)
|
M.trash.setup(opts)
|
||||||
|
|||||||
@@ -56,13 +56,18 @@ local function remove_dir(cwd)
|
|||||||
end
|
end
|
||||||
|
|
||||||
while true do
|
while true do
|
||||||
local name, t = vim.loop.fs_scandir_next(handle)
|
local name, _ = vim.loop.fs_scandir_next(handle)
|
||||||
if not name then
|
if not name then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
local new_cwd = utils.path_join { cwd, name }
|
local new_cwd = utils.path_join { cwd, name }
|
||||||
if t == "directory" then
|
|
||||||
|
-- Type must come from fs_stat and not fs_scandir_next to maintain sshfs compatibility
|
||||||
|
local stat = vim.loop.fs_stat(new_cwd)
|
||||||
|
local type = stat and stat.type or nil
|
||||||
|
|
||||||
|
if type == "directory" then
|
||||||
local success = remove_dir(new_cwd)
|
local success = remove_dir(new_cwd)
|
||||||
if not success then
|
if not success then
|
||||||
return false
|
return false
|
||||||
|
|||||||
@@ -33,11 +33,15 @@ end
|
|||||||
---@param what string type of status
|
---@param what string type of status
|
||||||
---@param skip_gitignored boolean default false
|
---@param skip_gitignored boolean default false
|
||||||
local function move(where, what, skip_gitignored)
|
local function move(where, what, skip_gitignored)
|
||||||
local node_cur = lib.get_node_at_cursor()
|
|
||||||
local first_node_line = core.get_nodes_starting_line()
|
local first_node_line = core.get_nodes_starting_line()
|
||||||
local nodes_by_line = utils.get_nodes_by_line(core.get_explorer().nodes, first_node_line)
|
local nodes_by_line = utils.get_nodes_by_line(core.get_explorer().nodes, first_node_line)
|
||||||
local iter_start, iter_end, iter_step, cur, first, nex
|
local iter_start, iter_end, iter_step, cur, first, nex
|
||||||
|
|
||||||
|
local cursor = lib.get_cursor_position()
|
||||||
|
if cursor and cursor[1] < first_node_line then
|
||||||
|
cur = cursor[1]
|
||||||
|
end
|
||||||
|
|
||||||
if where == "next" then
|
if where == "next" then
|
||||||
iter_start, iter_end, iter_step = first_node_line, #nodes_by_line, 1
|
iter_start, iter_end, iter_step = first_node_line, #nodes_by_line, 1
|
||||||
elseif where == "prev" then
|
elseif where == "prev" then
|
||||||
@@ -52,7 +56,7 @@ local function move(where, what, skip_gitignored)
|
|||||||
first = line
|
first = line
|
||||||
end
|
end
|
||||||
|
|
||||||
if node == node_cur then
|
if cursor and line == cursor[1] then
|
||||||
cur = line
|
cur = line
|
||||||
elseif valid and cur then
|
elseif valid and cur then
|
||||||
nex = line
|
nex = line
|
||||||
|
|||||||
@@ -1,21 +1,22 @@
|
|||||||
local git = require "nvim-tree.git"
|
local git = require "nvim-tree.git"
|
||||||
local view = require "nvim-tree.view"
|
local view = require "nvim-tree.view"
|
||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local explorer_module = require "nvim-tree.explorer"
|
|
||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
local explorer_node = require "nvim-tree.explorer.node"
|
||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
local Iterator = require "nvim-tree.iterators.node-iterator"
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---@param node Explorer|nil
|
---@param explorer Explorer|nil
|
||||||
---@param projects table
|
---@param projects table
|
||||||
local function refresh_nodes(node, projects)
|
local function refresh_nodes(explorer, projects)
|
||||||
Iterator.builder({ node })
|
Iterator.builder({ explorer })
|
||||||
:applier(function(n)
|
:applier(function(n)
|
||||||
if n.nodes then
|
if n.nodes then
|
||||||
local toplevel = git.get_toplevel(n.cwd or n.link_to or n.absolute_path)
|
local toplevel = git.get_toplevel(n.cwd or n.link_to or n.absolute_path)
|
||||||
explorer_module.reload(n, projects[toplevel] or {})
|
if explorer then
|
||||||
|
explorer:reload(n, projects[toplevel] or {})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
:recursor(function(n)
|
:recursor(function(n)
|
||||||
|
|||||||
@@ -6,10 +6,6 @@ local actions = require "nvim-tree.actions"
|
|||||||
local appearance_diagnostics = require "nvim-tree.appearance.diagnostics"
|
local appearance_diagnostics = require "nvim-tree.appearance.diagnostics"
|
||||||
local events = require "nvim-tree.events"
|
local events = require "nvim-tree.events"
|
||||||
local help = require "nvim-tree.help"
|
local help = require "nvim-tree.help"
|
||||||
local marks_navigation = require "nvim-tree.marks.navigation"
|
|
||||||
local marks_bulk_delete = require "nvim-tree.marks.bulk-delete"
|
|
||||||
local marks_bulk_trash = require "nvim-tree.marks.bulk-trash"
|
|
||||||
local marks_bulk_move = require "nvim-tree.marks.bulk-move"
|
|
||||||
local keymap = require "nvim-tree.keymap"
|
local keymap = require "nvim-tree.keymap"
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
|
|
||||||
@@ -76,18 +72,6 @@ local function wrap_node_or_nil(fn)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---Inject the explorer as the first argument if present otherwise do nothing.
|
|
||||||
---@param fn function function to invoke
|
|
||||||
---@return fun(...) : any
|
|
||||||
local function wrap_explorer(fn)
|
|
||||||
return function(...)
|
|
||||||
local explorer = core.get_explorer()
|
|
||||||
if explorer then
|
|
||||||
return fn(explorer, ...)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---Invoke a member's method on the singleton explorer.
|
---Invoke a member's method on the singleton explorer.
|
||||||
---Print error when setup not called.
|
---Print error when setup not called.
|
||||||
---@param explorer_member string explorer member name
|
---@param explorer_member string explorer member name
|
||||||
@@ -190,15 +174,15 @@ Api.fs.rename = wrap_node(actions.fs.rename_file.fn ":t")
|
|||||||
Api.fs.rename_sub = wrap_node(actions.fs.rename_file.fn ":p:h")
|
Api.fs.rename_sub = wrap_node(actions.fs.rename_file.fn ":p:h")
|
||||||
Api.fs.rename_basename = wrap_node(actions.fs.rename_file.fn ":t:r")
|
Api.fs.rename_basename = wrap_node(actions.fs.rename_file.fn ":t:r")
|
||||||
Api.fs.rename_full = wrap_node(actions.fs.rename_file.fn ":p")
|
Api.fs.rename_full = wrap_node(actions.fs.rename_file.fn ":p")
|
||||||
Api.fs.cut = wrap_node(actions.fs.copy_paste.cut)
|
Api.fs.cut = wrap_node(wrap_explorer_member("clipboard", "cut"))
|
||||||
Api.fs.paste = wrap_node(actions.fs.copy_paste.paste)
|
Api.fs.paste = wrap_node(wrap_explorer_member("clipboard", "paste"))
|
||||||
Api.fs.clear_clipboard = wrap(actions.fs.copy_paste.clear_clipboard)
|
Api.fs.clear_clipboard = wrap_explorer_member("clipboard", "clear_clipboard")
|
||||||
Api.fs.print_clipboard = wrap(actions.fs.copy_paste.print_clipboard)
|
Api.fs.print_clipboard = wrap_explorer_member("clipboard", "print_clipboard")
|
||||||
Api.fs.copy.node = wrap_node(actions.fs.copy_paste.copy)
|
Api.fs.copy.node = wrap_node(wrap_explorer_member("clipboard", "copy"))
|
||||||
Api.fs.copy.absolute_path = wrap_node(actions.fs.copy_paste.copy_absolute_path)
|
Api.fs.copy.absolute_path = wrap_node(wrap_explorer_member("clipboard", "copy_absolute_path"))
|
||||||
Api.fs.copy.filename = wrap_node(actions.fs.copy_paste.copy_filename)
|
Api.fs.copy.filename = wrap_node(wrap_explorer_member("clipboard", "copy_filename"))
|
||||||
Api.fs.copy.basename = wrap_node(actions.fs.copy_paste.copy_basename)
|
Api.fs.copy.basename = wrap_node(wrap_explorer_member("clipboard", "copy_basename"))
|
||||||
Api.fs.copy.relative_path = wrap_node(actions.fs.copy_paste.copy_path)
|
Api.fs.copy.relative_path = wrap_node(wrap_explorer_member("clipboard", "copy_path"))
|
||||||
|
|
||||||
---@param mode string
|
---@param mode string
|
||||||
---@param node table
|
---@param node table
|
||||||
@@ -267,16 +251,16 @@ Api.events.Event = events.Event
|
|||||||
Api.live_filter.start = wrap_explorer_member("live_filter", "start_filtering")
|
Api.live_filter.start = wrap_explorer_member("live_filter", "start_filtering")
|
||||||
Api.live_filter.clear = wrap_explorer_member("live_filter", "clear_filter")
|
Api.live_filter.clear = wrap_explorer_member("live_filter", "clear_filter")
|
||||||
|
|
||||||
Api.marks.get = wrap_node(wrap_explorer_member("marks", "get_mark"))
|
Api.marks.get = wrap_node(wrap_explorer_member("marks", "get"))
|
||||||
Api.marks.list = wrap_explorer_member("marks", "get_marks")
|
Api.marks.list = wrap_explorer_member("marks", "list")
|
||||||
Api.marks.toggle = wrap_node(wrap_explorer_member("marks", "toggle_mark"))
|
Api.marks.toggle = wrap_node(wrap_explorer_member("marks", "toggle"))
|
||||||
Api.marks.clear = wrap_explorer_member("marks", "clear_marks")
|
Api.marks.clear = wrap_explorer_member("marks", "clear")
|
||||||
Api.marks.bulk.delete = wrap_explorer(marks_bulk_delete.bulk_delete)
|
Api.marks.bulk.delete = wrap_explorer_member("marks", "bulk_delete")
|
||||||
Api.marks.bulk.trash = wrap_explorer(marks_bulk_trash.bulk_trash)
|
Api.marks.bulk.trash = wrap_explorer_member("marks", "bulk_trash")
|
||||||
Api.marks.bulk.move = wrap_explorer(marks_bulk_move.bulk_move)
|
Api.marks.bulk.move = wrap_explorer_member("marks", "bulk_move")
|
||||||
Api.marks.navigate.next = wrap(marks_navigation.next)
|
Api.marks.navigate.next = wrap_explorer_member("marks", "navigate_next")
|
||||||
Api.marks.navigate.prev = wrap(marks_navigation.prev)
|
Api.marks.navigate.prev = wrap_explorer_member("marks", "navigate_prev")
|
||||||
Api.marks.navigate.select = wrap(marks_navigation.select)
|
Api.marks.navigate.select = wrap_explorer_member("marks", "navigate_select")
|
||||||
|
|
||||||
Api.config.mappings.get_keymap = wrap(keymap.get_keymap)
|
Api.config.mappings.get_keymap = wrap(keymap.get_keymap)
|
||||||
Api.config.mappings.get_keymap_default = wrap(keymap.get_keymap_default)
|
Api.config.mappings.get_keymap_default = wrap(keymap.get_keymap_default)
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ function M.init(foldername)
|
|||||||
if TreeExplorer then
|
if TreeExplorer then
|
||||||
TreeExplorer:destroy()
|
TreeExplorer:destroy()
|
||||||
end
|
end
|
||||||
TreeExplorer = explorer.Explorer.new(foldername)
|
TreeExplorer = explorer:new(foldername)
|
||||||
if not first_init_done then
|
if not first_init_done then
|
||||||
events._dispatch_ready()
|
events._dispatch_ready()
|
||||||
first_init_done = true
|
first_init_done = true
|
||||||
|
|||||||
@@ -29,43 +29,50 @@ local function populate_children(handle, cwd, node, git_status, parent)
|
|||||||
})
|
})
|
||||||
|
|
||||||
while true do
|
while true do
|
||||||
local name, t = vim.loop.fs_scandir_next(handle)
|
local name, _ = vim.loop.fs_scandir_next(handle)
|
||||||
if not name then
|
if not name then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
local abs = utils.path_join { cwd, name }
|
local abs = utils.path_join { cwd, name }
|
||||||
local profile = log.profile_start("explore populate_children %s", abs)
|
|
||||||
|
|
||||||
---@type uv.fs_stat.result|nil
|
if Watcher.is_fs_event_capable(abs) then
|
||||||
local stat = vim.loop.fs_stat(abs)
|
local profile = log.profile_start("explore populate_children %s", abs)
|
||||||
local filter_reason = parent.filters:should_filter_as_reason(abs, stat, filter_status)
|
|
||||||
if filter_reason == FILTER_REASON.none and not nodes_by_path[abs] and Watcher.is_fs_event_capable(abs) then
|
---@type uv.fs_stat.result|nil
|
||||||
local child = nil
|
local stat = vim.loop.fs_stat(abs)
|
||||||
if t == "directory" and vim.loop.fs_access(abs, "R") then
|
|
||||||
child = builders.folder(node, abs, name, stat)
|
-- Type must come from fs_stat and not fs_scandir_next to maintain sshfs compatibility
|
||||||
elseif t == "file" then
|
local type = stat and stat.type or nil
|
||||||
child = builders.file(node, abs, name, stat)
|
|
||||||
elseif t == "link" then
|
local filter_reason = parent.filters:should_filter_as_reason(abs, stat, filter_status)
|
||||||
local link = builders.link(node, abs, name, stat)
|
if filter_reason == FILTER_REASON.none and not nodes_by_path[abs] then
|
||||||
if link.link_to ~= nil then
|
local child = nil
|
||||||
child = link
|
if type == "directory" and vim.loop.fs_access(abs, "R") then
|
||||||
end
|
child = builders.folder(node, abs, name, stat)
|
||||||
end
|
elseif type == "file" then
|
||||||
if child then
|
child = builders.file(node, abs, name, stat)
|
||||||
table.insert(node.nodes, child)
|
elseif type == "link" then
|
||||||
nodes_by_path[child.absolute_path] = true
|
local link = builders.link(node, abs, name, stat)
|
||||||
explorer_node.update_git_status(child, node_ignored, git_status)
|
if link.link_to ~= nil then
|
||||||
end
|
child = link
|
||||||
else
|
end
|
||||||
for reason, value in pairs(FILTER_REASON) do
|
end
|
||||||
if filter_reason == value then
|
if child then
|
||||||
node.hidden_stats[reason] = node.hidden_stats[reason] + 1
|
table.insert(node.nodes, child)
|
||||||
|
nodes_by_path[child.absolute_path] = true
|
||||||
|
explorer_node.update_git_status(child, node_ignored, git_status)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
for reason, value in pairs(FILTER_REASON) do
|
||||||
|
if filter_reason == value then
|
||||||
|
node.hidden_stats[reason] = node.hidden_stats[reason] + 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
log.profile_end(profile)
|
||||||
end
|
end
|
||||||
|
|
||||||
log.profile_end(profile)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -194,7 +194,7 @@ function Filters:prepare(git_status)
|
|||||||
|
|
||||||
local explorer = require("nvim-tree.core").get_explorer()
|
local explorer = require("nvim-tree.core").get_explorer()
|
||||||
if explorer then
|
if explorer then
|
||||||
for _, node in pairs(explorer.marks:get_marks()) do
|
for _, node in pairs(explorer.marks:list()) do
|
||||||
status.bookmarks[node.absolute_path] = node.type
|
status.bookmarks[node.absolute_path] = node.type
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,16 +1,23 @@
|
|||||||
|
local builders = require "nvim-tree.explorer.node-builders"
|
||||||
local git = require "nvim-tree.git"
|
local git = require "nvim-tree.git"
|
||||||
|
local log = require "nvim-tree.log"
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
|
local utils = require "nvim-tree.utils"
|
||||||
local watch = require "nvim-tree.explorer.watch"
|
local watch = require "nvim-tree.explorer.watch"
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
local explorer_node = require "nvim-tree.explorer.node"
|
||||||
|
|
||||||
|
local NodeIterator = require "nvim-tree.iterators.node-iterator"
|
||||||
|
local Watcher = require "nvim-tree.watcher"
|
||||||
|
|
||||||
local Filters = require "nvim-tree.explorer.filters"
|
local Filters = require "nvim-tree.explorer.filters"
|
||||||
local Marks = require "nvim-tree.marks"
|
local Marks = {} -- circular dependencies
|
||||||
local LiveFilter = require "nvim-tree.explorer.live-filter"
|
local LiveFilter = require "nvim-tree.explorer.live-filter"
|
||||||
local Sorters = require "nvim-tree.explorer.sorters"
|
local Sorters = require "nvim-tree.explorer.sorters"
|
||||||
|
local Clipboard = {} -- circular dependencies
|
||||||
|
|
||||||
local M = {}
|
local FILTER_REASON = require("nvim-tree.enum").FILTER_REASON
|
||||||
|
|
||||||
M.explore = require("nvim-tree.explorer.explore").explore
|
local config
|
||||||
M.reload = require("nvim-tree.explorer.reload").reload
|
|
||||||
|
|
||||||
---@class Explorer
|
---@class Explorer
|
||||||
---@field absolute_path string
|
---@field absolute_path string
|
||||||
@@ -20,13 +27,14 @@ M.reload = require("nvim-tree.explorer.reload").reload
|
|||||||
---@field live_filter LiveFilter
|
---@field live_filter LiveFilter
|
||||||
---@field sorters Sorter
|
---@field sorters Sorter
|
||||||
---@field marks Marks
|
---@field marks Marks
|
||||||
|
---@field clipboard Clipboard
|
||||||
local Explorer = {}
|
local Explorer = {}
|
||||||
Explorer.__index = Explorer
|
|
||||||
|
Explorer.explore = require("nvim-tree.explorer.explore").explore
|
||||||
|
|
||||||
---@param path string|nil
|
---@param path string|nil
|
||||||
---@return Explorer|nil
|
---@return Explorer|nil
|
||||||
function Explorer.new(path)
|
function Explorer:new(path)
|
||||||
local err
|
local err
|
||||||
|
|
||||||
if path then
|
if path then
|
||||||
@@ -40,26 +48,24 @@ function Explorer.new(path)
|
|||||||
end
|
end
|
||||||
|
|
||||||
---@class Explorer
|
---@class Explorer
|
||||||
local explorer = setmetatable({
|
local o = setmetatable({
|
||||||
absolute_path = path,
|
absolute_path = path,
|
||||||
nodes = {},
|
nodes = {},
|
||||||
open = true,
|
open = true,
|
||||||
marks = Marks:new(),
|
sorters = Sorters:new(config),
|
||||||
sorters = Sorters:new(M.config),
|
|
||||||
}, Explorer)
|
}, Explorer)
|
||||||
explorer.watcher = watch.create_watcher(explorer)
|
setmetatable(o, self)
|
||||||
explorer.filters = Filters:new(M.config, explorer)
|
self.__index = self
|
||||||
explorer.live_filter = LiveFilter:new(M.config, explorer)
|
|
||||||
explorer:_load(explorer)
|
|
||||||
return explorer
|
|
||||||
end
|
|
||||||
|
|
||||||
---@private
|
o.watcher = watch.create_watcher(o)
|
||||||
---@param node Node
|
o.filters = Filters:new(config, o)
|
||||||
function Explorer:_load(node)
|
o.live_filter = LiveFilter:new(config, o)
|
||||||
local cwd = node.link_to or node.absolute_path
|
o.marks = Marks:new(config, o)
|
||||||
local git_status = git.load_project_status(cwd)
|
o.clipboard = Clipboard:new(config, o)
|
||||||
M.explore(node, git_status, self)
|
|
||||||
|
o:_load(o)
|
||||||
|
|
||||||
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
@@ -79,14 +85,256 @@ function Explorer:destroy()
|
|||||||
iterate(self)
|
iterate(self)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
---@param node Node
|
||||||
M.config = opts
|
---@param git_status table|nil
|
||||||
require("nvim-tree.explorer.node").setup(opts)
|
function Explorer:reload(node, git_status)
|
||||||
require("nvim-tree.explorer.explore").setup(opts)
|
local cwd = node.link_to or node.absolute_path
|
||||||
require("nvim-tree.explorer.reload").setup(opts)
|
local handle = vim.loop.fs_scandir(cwd)
|
||||||
require("nvim-tree.explorer.watch").setup(opts)
|
if not handle then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local profile = log.profile_start("reload %s", node.absolute_path)
|
||||||
|
|
||||||
|
local filter_status = self.filters:prepare(git_status)
|
||||||
|
|
||||||
|
if node.group_next then
|
||||||
|
node.nodes = { node.group_next }
|
||||||
|
node.group_next = nil
|
||||||
|
end
|
||||||
|
|
||||||
|
local remain_childs = {}
|
||||||
|
|
||||||
|
local node_ignored = explorer_node.is_git_ignored(node)
|
||||||
|
---@type table<string, Node>
|
||||||
|
local nodes_by_path = utils.key_by(node.nodes, "absolute_path")
|
||||||
|
|
||||||
|
-- To reset we must 'zero' everything that we use
|
||||||
|
node.hidden_stats = vim.tbl_deep_extend("force", node.hidden_stats or {}, {
|
||||||
|
git = 0,
|
||||||
|
buf = 0,
|
||||||
|
dotfile = 0,
|
||||||
|
custom = 0,
|
||||||
|
bookmark = 0,
|
||||||
|
})
|
||||||
|
|
||||||
|
while true do
|
||||||
|
local name, _ = vim.loop.fs_scandir_next(handle)
|
||||||
|
if not name then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
|
||||||
|
local abs = utils.path_join { cwd, name }
|
||||||
|
---@type uv.fs_stat.result|nil
|
||||||
|
local stat = vim.loop.fs_stat(abs)
|
||||||
|
|
||||||
|
local filter_reason = self.filters:should_filter_as_reason(abs, stat, filter_status)
|
||||||
|
if filter_reason == FILTER_REASON.none then
|
||||||
|
remain_childs[abs] = true
|
||||||
|
|
||||||
|
-- Type must come from fs_stat and not fs_scandir_next to maintain sshfs compatibility
|
||||||
|
local type = stat and stat.type or nil
|
||||||
|
|
||||||
|
-- Recreate node if type changes.
|
||||||
|
if nodes_by_path[abs] then
|
||||||
|
local n = nodes_by_path[abs]
|
||||||
|
|
||||||
|
if n.type ~= type then
|
||||||
|
utils.array_remove(node.nodes, n)
|
||||||
|
explorer_node.node_destroy(n)
|
||||||
|
nodes_by_path[abs] = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if not nodes_by_path[abs] then
|
||||||
|
local new_child = nil
|
||||||
|
if type == "directory" and vim.loop.fs_access(abs, "R") and Watcher.is_fs_event_capable(abs) then
|
||||||
|
new_child = builders.folder(node, abs, name, stat)
|
||||||
|
elseif type == "file" then
|
||||||
|
new_child = builders.file(node, abs, name, stat)
|
||||||
|
elseif type == "link" then
|
||||||
|
local link = builders.link(node, abs, name, stat)
|
||||||
|
if link.link_to ~= nil then
|
||||||
|
new_child = link
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if new_child then
|
||||||
|
table.insert(node.nodes, new_child)
|
||||||
|
nodes_by_path[abs] = new_child
|
||||||
|
end
|
||||||
|
else
|
||||||
|
local n = nodes_by_path[abs]
|
||||||
|
if n then
|
||||||
|
n.executable = builders.is_executable(abs) or false
|
||||||
|
n.fs_stat = stat
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
for reason, value in pairs(FILTER_REASON) do
|
||||||
|
if filter_reason == value then
|
||||||
|
node.hidden_stats[reason] = node.hidden_stats[reason] + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
node.nodes = vim.tbl_map(
|
||||||
|
self:update_status(nodes_by_path, node_ignored, git_status),
|
||||||
|
vim.tbl_filter(function(n)
|
||||||
|
if remain_childs[n.absolute_path] then
|
||||||
|
return remain_childs[n.absolute_path]
|
||||||
|
else
|
||||||
|
explorer_node.node_destroy(n)
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end, node.nodes)
|
||||||
|
)
|
||||||
|
|
||||||
|
local is_root = not node.parent
|
||||||
|
local child_folder_only = explorer_node.has_one_child_folder(node) and node.nodes[1]
|
||||||
|
if config.group_empty and not is_root and child_folder_only then
|
||||||
|
node.group_next = child_folder_only
|
||||||
|
local ns = self:reload(child_folder_only, git_status)
|
||||||
|
node.nodes = ns or {}
|
||||||
|
log.profile_end(profile)
|
||||||
|
return ns
|
||||||
|
end
|
||||||
|
|
||||||
|
self.sorters:sort(node.nodes)
|
||||||
|
self.live_filter:apply_filter(node)
|
||||||
|
log.profile_end(profile)
|
||||||
|
return node.nodes
|
||||||
end
|
end
|
||||||
|
|
||||||
M.Explorer = Explorer
|
---TODO #2837 #2871 move this and similar to node
|
||||||
|
---Refresh contents and git status for a single node
|
||||||
|
---@param node Node
|
||||||
|
---@param callback function
|
||||||
|
function Explorer:refresh_node(node, callback)
|
||||||
|
if type(node) ~= "table" then
|
||||||
|
callback()
|
||||||
|
end
|
||||||
|
|
||||||
return M
|
local parent_node = utils.get_parent_of_group(node)
|
||||||
|
|
||||||
|
self:reload_and_get_git_project(node.absolute_path, function(toplevel, project)
|
||||||
|
self:reload(parent_node, project)
|
||||||
|
|
||||||
|
self:update_parent_statuses(parent_node, project, toplevel)
|
||||||
|
|
||||||
|
callback()
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
---Refresh contents of all nodes to a path: actual directory and links.
|
||||||
|
---Groups will be expanded if needed.
|
||||||
|
---@param path string absolute path
|
||||||
|
function Explorer:refresh_parent_nodes_for_path(path)
|
||||||
|
local profile = log.profile_start("refresh_parent_nodes_for_path %s", path)
|
||||||
|
|
||||||
|
-- collect parent nodes from the top down
|
||||||
|
local parent_nodes = {}
|
||||||
|
NodeIterator.builder({ self })
|
||||||
|
:recursor(function(node)
|
||||||
|
return node.nodes
|
||||||
|
end)
|
||||||
|
:applier(function(node)
|
||||||
|
local abs_contains = node.absolute_path and path:find(node.absolute_path, 1, true) == 1
|
||||||
|
local link_contains = node.link_to and path:find(node.link_to, 1, true) == 1
|
||||||
|
if abs_contains or link_contains then
|
||||||
|
table.insert(parent_nodes, node)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
:iterate()
|
||||||
|
|
||||||
|
-- refresh in order; this will expand groups as needed
|
||||||
|
for _, node in ipairs(parent_nodes) do
|
||||||
|
local toplevel = git.get_toplevel(node.absolute_path)
|
||||||
|
local project = git.get_project(toplevel) or {}
|
||||||
|
|
||||||
|
self:reload(node, project)
|
||||||
|
self:update_parent_statuses(node, project, toplevel)
|
||||||
|
end
|
||||||
|
|
||||||
|
log.profile_end(profile)
|
||||||
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
|
---@param node Node
|
||||||
|
function Explorer:_load(node)
|
||||||
|
local cwd = node.link_to or node.absolute_path
|
||||||
|
local git_status = git.load_project_status(cwd)
|
||||||
|
Explorer.explore(node, git_status, self)
|
||||||
|
end
|
||||||
|
|
||||||
|
function Explorer.setup(opts)
|
||||||
|
config = opts
|
||||||
|
require("nvim-tree.explorer.node").setup(opts)
|
||||||
|
require("nvim-tree.explorer.explore").setup(opts)
|
||||||
|
require("nvim-tree.explorer.watch").setup(opts)
|
||||||
|
|
||||||
|
Marks = require "nvim-tree.marks"
|
||||||
|
Clipboard = require "nvim-tree.actions.fs.clipboard"
|
||||||
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
|
---@param nodes_by_path table
|
||||||
|
---@param node_ignored boolean
|
||||||
|
---@param status table|nil
|
||||||
|
---@return fun(node: Node): table
|
||||||
|
function Explorer:update_status(nodes_by_path, node_ignored, status)
|
||||||
|
return function(node)
|
||||||
|
if nodes_by_path[node.absolute_path] then
|
||||||
|
explorer_node.update_git_status(node, node_ignored, status)
|
||||||
|
end
|
||||||
|
return node
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---TODO #2837 #2871 move this and similar to node
|
||||||
|
---@private
|
||||||
|
---@param path string
|
||||||
|
---@param callback fun(toplevel: string|nil, project: table|nil)
|
||||||
|
function Explorer:reload_and_get_git_project(path, callback)
|
||||||
|
local toplevel = git.get_toplevel(path)
|
||||||
|
|
||||||
|
git.reload_project(toplevel, path, function()
|
||||||
|
callback(toplevel, git.get_project(toplevel) or {})
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
---TODO #2837 #2871 move this and similar to node
|
||||||
|
---@private
|
||||||
|
---@param node Node
|
||||||
|
---@param project table|nil
|
||||||
|
---@param root string|nil
|
||||||
|
function Explorer:update_parent_statuses(node, project, root)
|
||||||
|
while project and node do
|
||||||
|
-- step up to the containing project
|
||||||
|
if node.absolute_path == root then
|
||||||
|
-- stop at the top of the tree
|
||||||
|
if not node.parent then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
|
||||||
|
root = git.get_toplevel(node.parent.absolute_path)
|
||||||
|
|
||||||
|
-- stop when no more projects
|
||||||
|
if not root then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
|
||||||
|
-- update the containing project
|
||||||
|
project = git.get_project(root)
|
||||||
|
git.reload_project(root, node.absolute_path, nil)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- update status
|
||||||
|
explorer_node.update_git_status(node, explorer_node.is_git_ignored(node.parent), project)
|
||||||
|
|
||||||
|
-- maybe parent
|
||||||
|
node = node.parent
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return Explorer
|
||||||
|
|||||||
@@ -1,251 +0,0 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
|
||||||
local builders = require "nvim-tree.explorer.node-builders"
|
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
|
||||||
local git = require "nvim-tree.git"
|
|
||||||
local log = require "nvim-tree.log"
|
|
||||||
|
|
||||||
local FILTER_REASON = require("nvim-tree.enum").FILTER_REASON
|
|
||||||
local NodeIterator = require "nvim-tree.iterators.node-iterator"
|
|
||||||
local Watcher = require "nvim-tree.watcher"
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
---@param nodes_by_path table
|
|
||||||
---@param node_ignored boolean
|
|
||||||
---@param status table
|
|
||||||
---@return fun(node: Node): table
|
|
||||||
local function update_status(nodes_by_path, node_ignored, status)
|
|
||||||
return function(node)
|
|
||||||
if nodes_by_path[node.absolute_path] then
|
|
||||||
explorer_node.update_git_status(node, node_ignored, status)
|
|
||||||
end
|
|
||||||
return node
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param path string
|
|
||||||
---@param callback fun(toplevel: string|nil, project: table|nil)
|
|
||||||
local function reload_and_get_git_project(path, callback)
|
|
||||||
local toplevel = git.get_toplevel(path)
|
|
||||||
|
|
||||||
git.reload_project(toplevel, path, function()
|
|
||||||
callback(toplevel, git.get_project(toplevel) or {})
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node Node
|
|
||||||
---@param project table|nil
|
|
||||||
---@param root string|nil
|
|
||||||
local function update_parent_statuses(node, project, root)
|
|
||||||
while project and node do
|
|
||||||
-- step up to the containing project
|
|
||||||
if node.absolute_path == root then
|
|
||||||
-- stop at the top of the tree
|
|
||||||
if not node.parent then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
|
|
||||||
root = git.get_toplevel(node.parent.absolute_path)
|
|
||||||
|
|
||||||
-- stop when no more projects
|
|
||||||
if not root then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
|
|
||||||
-- update the containing project
|
|
||||||
project = git.get_project(root)
|
|
||||||
git.reload_project(root, node.absolute_path, nil)
|
|
||||||
end
|
|
||||||
|
|
||||||
-- update status
|
|
||||||
explorer_node.update_git_status(node, explorer_node.is_git_ignored(node.parent), project)
|
|
||||||
|
|
||||||
-- maybe parent
|
|
||||||
node = node.parent
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node Node
|
|
||||||
---@param git_status table
|
|
||||||
function M.reload(node, git_status)
|
|
||||||
local explorer = require("nvim-tree.core").get_explorer()
|
|
||||||
if not explorer then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
local cwd = node.link_to or node.absolute_path
|
|
||||||
local handle = vim.loop.fs_scandir(cwd)
|
|
||||||
if not handle then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local profile = log.profile_start("reload %s", node.absolute_path)
|
|
||||||
|
|
||||||
local filter_status = explorer.filters:prepare(git_status)
|
|
||||||
|
|
||||||
if node.group_next then
|
|
||||||
node.nodes = { node.group_next }
|
|
||||||
node.group_next = nil
|
|
||||||
end
|
|
||||||
|
|
||||||
local remain_childs = {}
|
|
||||||
|
|
||||||
local node_ignored = explorer_node.is_git_ignored(node)
|
|
||||||
---@type table<string, Node>
|
|
||||||
local nodes_by_path = utils.key_by(node.nodes, "absolute_path")
|
|
||||||
|
|
||||||
-- To reset we must 'zero' everything that we use
|
|
||||||
node.hidden_stats = vim.tbl_deep_extend("force", node.hidden_stats or {}, {
|
|
||||||
git = 0,
|
|
||||||
buf = 0,
|
|
||||||
dotfile = 0,
|
|
||||||
custom = 0,
|
|
||||||
bookmark = 0,
|
|
||||||
})
|
|
||||||
|
|
||||||
while true do
|
|
||||||
local name, t = vim.loop.fs_scandir_next(handle)
|
|
||||||
if not name then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
|
|
||||||
local abs = utils.path_join { cwd, name }
|
|
||||||
---@type uv.fs_stat.result|nil
|
|
||||||
local stat = vim.loop.fs_stat(abs)
|
|
||||||
|
|
||||||
local filter_reason = explorer.filters:should_filter_as_reason(abs, stat, filter_status)
|
|
||||||
if filter_reason == FILTER_REASON.none then
|
|
||||||
remain_childs[abs] = true
|
|
||||||
|
|
||||||
-- Recreate node if type changes.
|
|
||||||
if nodes_by_path[abs] then
|
|
||||||
local n = nodes_by_path[abs]
|
|
||||||
|
|
||||||
if n.type ~= t then
|
|
||||||
utils.array_remove(node.nodes, n)
|
|
||||||
explorer_node.node_destroy(n)
|
|
||||||
nodes_by_path[abs] = nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if not nodes_by_path[abs] then
|
|
||||||
local new_child = nil
|
|
||||||
if t == "directory" and vim.loop.fs_access(abs, "R") and Watcher.is_fs_event_capable(abs) then
|
|
||||||
new_child = builders.folder(node, abs, name, stat)
|
|
||||||
elseif t == "file" then
|
|
||||||
new_child = builders.file(node, abs, name, stat)
|
|
||||||
elseif t == "link" then
|
|
||||||
local link = builders.link(node, abs, name, stat)
|
|
||||||
if link.link_to ~= nil then
|
|
||||||
new_child = link
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if new_child then
|
|
||||||
table.insert(node.nodes, new_child)
|
|
||||||
nodes_by_path[abs] = new_child
|
|
||||||
end
|
|
||||||
else
|
|
||||||
local n = nodes_by_path[abs]
|
|
||||||
if n then
|
|
||||||
n.executable = builders.is_executable(abs) or false
|
|
||||||
n.fs_stat = stat
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
for reason, value in pairs(FILTER_REASON) do
|
|
||||||
if filter_reason == value then
|
|
||||||
node.hidden_stats[reason] = node.hidden_stats[reason] + 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
node.nodes = vim.tbl_map(
|
|
||||||
update_status(nodes_by_path, node_ignored, git_status),
|
|
||||||
vim.tbl_filter(function(n)
|
|
||||||
if remain_childs[n.absolute_path] then
|
|
||||||
return remain_childs[n.absolute_path]
|
|
||||||
else
|
|
||||||
explorer_node.node_destroy(n)
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
end, node.nodes)
|
|
||||||
)
|
|
||||||
|
|
||||||
local is_root = not node.parent
|
|
||||||
local child_folder_only = explorer_node.has_one_child_folder(node) and node.nodes[1]
|
|
||||||
if M.config.group_empty and not is_root and child_folder_only then
|
|
||||||
node.group_next = child_folder_only
|
|
||||||
local ns = M.reload(child_folder_only, git_status)
|
|
||||||
node.nodes = ns or {}
|
|
||||||
log.profile_end(profile)
|
|
||||||
return ns
|
|
||||||
end
|
|
||||||
|
|
||||||
explorer.sorters:sort(node.nodes)
|
|
||||||
explorer.live_filter:apply_filter(node)
|
|
||||||
log.profile_end(profile)
|
|
||||||
return node.nodes
|
|
||||||
end
|
|
||||||
|
|
||||||
---Refresh contents and git status for a single node
|
|
||||||
---@param node Node
|
|
||||||
---@param callback function
|
|
||||||
function M.refresh_node(node, callback)
|
|
||||||
if type(node) ~= "table" then
|
|
||||||
callback()
|
|
||||||
end
|
|
||||||
|
|
||||||
local parent_node = utils.get_parent_of_group(node)
|
|
||||||
|
|
||||||
reload_and_get_git_project(node.absolute_path, function(toplevel, project)
|
|
||||||
require("nvim-tree.explorer.reload").reload(parent_node, project)
|
|
||||||
|
|
||||||
update_parent_statuses(parent_node, project, toplevel)
|
|
||||||
|
|
||||||
callback()
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
---Refresh contents of all nodes to a path: actual directory and links.
|
|
||||||
---Groups will be expanded if needed.
|
|
||||||
---@param path string absolute path
|
|
||||||
function M.refresh_parent_nodes_for_path(path)
|
|
||||||
local explorer = require("nvim-tree.core").get_explorer()
|
|
||||||
if not explorer then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local profile = log.profile_start("refresh_parent_nodes_for_path %s", path)
|
|
||||||
|
|
||||||
-- collect parent nodes from the top down
|
|
||||||
local parent_nodes = {}
|
|
||||||
NodeIterator.builder({ explorer })
|
|
||||||
:recursor(function(node)
|
|
||||||
return node.nodes
|
|
||||||
end)
|
|
||||||
:applier(function(node)
|
|
||||||
local abs_contains = node.absolute_path and path:find(node.absolute_path, 1, true) == 1
|
|
||||||
local link_contains = node.link_to and path:find(node.link_to, 1, true) == 1
|
|
||||||
if abs_contains or link_contains then
|
|
||||||
table.insert(parent_nodes, node)
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
:iterate()
|
|
||||||
|
|
||||||
-- refresh in order; this will expand groups as needed
|
|
||||||
for _, node in ipairs(parent_nodes) do
|
|
||||||
local toplevel = git.get_toplevel(node.absolute_path)
|
|
||||||
local project = git.get_project(toplevel) or {}
|
|
||||||
|
|
||||||
M.reload(node, project)
|
|
||||||
update_parent_statuses(node, project, toplevel)
|
|
||||||
end
|
|
||||||
|
|
||||||
log.profile_end(profile)
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config = opts.renderer
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -76,9 +76,12 @@ function M.create_watcher(node)
|
|||||||
else
|
else
|
||||||
log.line("watcher", "node event executing refresh '%s'", node.absolute_path)
|
log.line("watcher", "node event executing refresh '%s'", node.absolute_path)
|
||||||
end
|
end
|
||||||
require("nvim-tree.explorer.reload").refresh_node(node, function()
|
local explorer = require("nvim-tree.core").get_explorer()
|
||||||
require("nvim-tree.renderer").draw()
|
if explorer then
|
||||||
end)
|
explorer:refresh_node(node, function()
|
||||||
|
require("nvim-tree.renderer").draw()
|
||||||
|
end)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -15,25 +15,33 @@ local M = {
|
|||||||
target_winid = nil,
|
target_winid = nil,
|
||||||
}
|
}
|
||||||
|
|
||||||
---@return Node|nil
|
---Cursor position as per vim.api.nvim_win_get_cursor
|
||||||
function M.get_node_at_cursor()
|
---@return integer[]|nil
|
||||||
|
function M.get_cursor_position()
|
||||||
if not core.get_explorer() then
|
if not core.get_explorer() then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local winnr = view.get_winnr()
|
local winnr = view.get_winnr()
|
||||||
if not winnr then
|
if not winnr or not vim.api.nvim_win_is_valid(winnr) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local cursor = vim.api.nvim_win_get_cursor(winnr)
|
return vim.api.nvim_win_get_cursor(winnr)
|
||||||
local line = cursor[1]
|
end
|
||||||
|
|
||||||
if line == 1 and view.is_root_folder_visible(core.get_cwd()) then
|
---@return Node|nil
|
||||||
|
function M.get_node_at_cursor()
|
||||||
|
local cursor = M.get_cursor_position()
|
||||||
|
if not cursor then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if cursor[1] == 1 and view.is_root_folder_visible(core.get_cwd()) then
|
||||||
return { name = ".." }
|
return { name = ".." }
|
||||||
end
|
end
|
||||||
|
|
||||||
return utils.get_nodes_by_line(core.get_explorer().nodes, core.get_nodes_starting_line())[line]
|
return utils.get_nodes_by_line(core.get_explorer().nodes, core.get_nodes_starting_line())[cursor[1]]
|
||||||
end
|
end
|
||||||
|
|
||||||
---Create a sanitized partial copy of a node, populating children recursively.
|
---Create a sanitized partial copy of a node, populating children recursively.
|
||||||
|
|||||||
@@ -1,59 +0,0 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
|
||||||
local remove_file = require "nvim-tree.actions.fs.remove-file"
|
|
||||||
local notify = require "nvim-tree.notify"
|
|
||||||
local lib = require "nvim-tree.lib"
|
|
||||||
|
|
||||||
local M = {
|
|
||||||
config = {},
|
|
||||||
}
|
|
||||||
|
|
||||||
--- Delete nodes; each removal will be optionally notified
|
|
||||||
---@param nodes Node[]
|
|
||||||
---@param marks Marks
|
|
||||||
local function do_delete(marks, nodes)
|
|
||||||
for _, node in pairs(nodes) do
|
|
||||||
remove_file.remove(node)
|
|
||||||
end
|
|
||||||
|
|
||||||
marks:clear_marks()
|
|
||||||
|
|
||||||
if not M.config.filesystem_watchers.enable then
|
|
||||||
require("nvim-tree.actions.reloaders").reload_explorer()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
--- Delete marked nodes, optionally prompting
|
|
||||||
---@param explorer Explorer
|
|
||||||
function M.bulk_delete(explorer)
|
|
||||||
if not explorer then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local marks = explorer.marks
|
|
||||||
|
|
||||||
local nodes = marks:get_marks()
|
|
||||||
if not nodes or #nodes == 0 then
|
|
||||||
notify.warn "No bookmarksed to delete."
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
if M.config.ui.confirm.remove then
|
|
||||||
local prompt_select = "Remove bookmarked ?"
|
|
||||||
local prompt_input = prompt_select .. " y/N: "
|
|
||||||
lib.prompt(prompt_input, prompt_select, { "", "y" }, { "No", "Yes" }, "nvimtree_bulk_delete", function(item_short)
|
|
||||||
utils.clear_prompt()
|
|
||||||
if item_short == "y" then
|
|
||||||
do_delete(marks, nodes)
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
else
|
|
||||||
do_delete(marks, nodes)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config.ui = opts.ui
|
|
||||||
M.config.filesystem_watchers = opts.filesystem_watchers
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
local core = require "nvim-tree.core"
|
|
||||||
local utils = require "nvim-tree.utils"
|
|
||||||
local rename_file = require "nvim-tree.actions.fs.rename-file"
|
|
||||||
local notify = require "nvim-tree.notify"
|
|
||||||
local lib = require "nvim-tree.lib"
|
|
||||||
|
|
||||||
local M = {
|
|
||||||
config = {},
|
|
||||||
}
|
|
||||||
|
|
||||||
---@param explorer Explorer
|
|
||||||
function M.bulk_move(explorer)
|
|
||||||
if not explorer then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
local marks = explorer.marks
|
|
||||||
|
|
||||||
if #marks:get_marks() == 0 then
|
|
||||||
notify.warn "No bookmarks to move."
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local node_at_cursor = lib.get_node_at_cursor()
|
|
||||||
local default_path = core.get_cwd()
|
|
||||||
|
|
||||||
if node_at_cursor and node_at_cursor.type == "directory" then
|
|
||||||
default_path = node_at_cursor.absolute_path
|
|
||||||
elseif node_at_cursor and node_at_cursor.parent then
|
|
||||||
default_path = node_at_cursor.parent.absolute_path
|
|
||||||
end
|
|
||||||
|
|
||||||
local input_opts = {
|
|
||||||
prompt = "Move to: ",
|
|
||||||
default = default_path,
|
|
||||||
completion = "dir",
|
|
||||||
}
|
|
||||||
|
|
||||||
vim.ui.input(input_opts, function(location)
|
|
||||||
utils.clear_prompt()
|
|
||||||
if not location or location == "" then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
if vim.fn.filewritable(location) ~= 2 then
|
|
||||||
notify.warn(location .. " is not writable, cannot move.")
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local nodes = marks:get_marks()
|
|
||||||
for _, node in pairs(nodes) do
|
|
||||||
local head = vim.fn.fnamemodify(node.absolute_path, ":t")
|
|
||||||
local to = utils.path_join { location, head }
|
|
||||||
rename_file.rename(node, to)
|
|
||||||
end
|
|
||||||
|
|
||||||
marks:clear_marks()
|
|
||||||
|
|
||||||
if not M.config.filesystem_watchers.enable then
|
|
||||||
require("nvim-tree.actions.reloaders").reload_explorer()
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config.filesystem_watchers = opts.filesystem_watchers
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
|
||||||
local remove_file = require "nvim-tree.actions.fs.trash"
|
|
||||||
local notify = require "nvim-tree.notify"
|
|
||||||
local lib = require "nvim-tree.lib"
|
|
||||||
|
|
||||||
local M = {
|
|
||||||
config = {},
|
|
||||||
}
|
|
||||||
|
|
||||||
--- Delete nodes; each removal will be optionally notified
|
|
||||||
---@param nodes Node[]
|
|
||||||
local function do_trash(nodes)
|
|
||||||
for _, node in pairs(nodes) do
|
|
||||||
remove_file.remove(node)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param explorer Explorer
|
|
||||||
function M.bulk_trash(explorer)
|
|
||||||
if not explorer then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local marks = explorer.marks
|
|
||||||
|
|
||||||
local nodes = marks:get_marks()
|
|
||||||
if not nodes or #nodes == 0 then
|
|
||||||
notify.warn "No bookmarks to trash."
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
if M.config.ui.confirm.trash then
|
|
||||||
local prompt_select = "Trash bookmarked ?"
|
|
||||||
local prompt_input = prompt_select .. " y/N: "
|
|
||||||
lib.prompt(prompt_input, prompt_select, { "", "y" }, { "No", "Yes" }, "nvimtree_bulk_trash", function(item_short)
|
|
||||||
utils.clear_prompt()
|
|
||||||
if item_short == "y" then
|
|
||||||
do_trash(nodes)
|
|
||||||
marks:clear_marks()
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
else
|
|
||||||
do_trash(nodes)
|
|
||||||
marks:clear_marks()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config.ui = opts.ui
|
|
||||||
M.config.filesystem_watchers = opts.filesystem_watchers
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,65 +1,82 @@
|
|||||||
local renderer = {} -- circular dependency
|
local Iterator = require "nvim-tree.iterators.node-iterator"
|
||||||
|
local core = require "nvim-tree.core"
|
||||||
|
local lib = require "nvim-tree.lib"
|
||||||
|
local notify = require "nvim-tree.notify"
|
||||||
|
local open_file = require "nvim-tree.actions.node.open-file"
|
||||||
|
local remove_file = require "nvim-tree.actions.fs.remove-file"
|
||||||
|
local rename_file = require "nvim-tree.actions.fs.rename-file"
|
||||||
|
local renderer = require "nvim-tree.renderer"
|
||||||
|
local trash = require "nvim-tree.actions.fs.trash"
|
||||||
|
local utils = require "nvim-tree.utils"
|
||||||
|
|
||||||
---@class Marks
|
---@class Marks
|
||||||
---@field private marks Node[]
|
---@field config table hydrated user opts.filters
|
||||||
|
---@field private explorer Explorer
|
||||||
|
---@field private marks table<string, Node> by absolute path
|
||||||
local Marks = {}
|
local Marks = {}
|
||||||
|
|
||||||
---@return Marks
|
---@return Marks
|
||||||
function Marks:new()
|
---@param opts table user options
|
||||||
local o = {}
|
---@param explorer Explorer
|
||||||
|
function Marks:new(opts, explorer)
|
||||||
|
local o = {
|
||||||
|
explorer = explorer,
|
||||||
|
config = {
|
||||||
|
ui = opts.ui,
|
||||||
|
filesystem_watchers = opts.filesystem_watchers,
|
||||||
|
},
|
||||||
|
marks = {},
|
||||||
|
}
|
||||||
|
|
||||||
setmetatable(o, self)
|
setmetatable(o, self)
|
||||||
self.__index = self
|
self.__index = self
|
||||||
|
|
||||||
o.marks = {}
|
|
||||||
|
|
||||||
return o
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Clear all marks and reload if watchers disabled
|
||||||
---@private
|
---@private
|
||||||
---@param node Node
|
function Marks:clear_reload()
|
||||||
function Marks:add_mark(node)
|
self:clear()
|
||||||
self.marks[node.absolute_path] = node
|
if not self.config.filesystem_watchers.enable then
|
||||||
|
require("nvim-tree.actions.reloaders").reload_explorer()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Clear all marks and redraw
|
||||||
|
---@public
|
||||||
|
function Marks:clear()
|
||||||
|
self.marks = {}
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end
|
end
|
||||||
|
|
||||||
---@private
|
---@public
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function Marks:remove_mark(node)
|
function Marks:toggle(node)
|
||||||
self.marks[node.absolute_path] = nil
|
|
||||||
|
|
||||||
renderer.draw()
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node Node
|
|
||||||
function Marks:toggle_mark(node)
|
|
||||||
if node.absolute_path == nil then
|
if node.absolute_path == nil then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if self:get_mark(node) then
|
if self:get(node) then
|
||||||
self:remove_mark(node)
|
self.marks[node.absolute_path] = nil
|
||||||
else
|
else
|
||||||
self:add_mark(node)
|
self.marks[node.absolute_path] = node
|
||||||
end
|
end
|
||||||
|
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end
|
end
|
||||||
|
|
||||||
function Marks:clear_marks()
|
---Return node if marked
|
||||||
self.marks = {}
|
---@public
|
||||||
|
|
||||||
renderer.draw()
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@return Node|nil
|
---@return Node|nil
|
||||||
function Marks:get_mark(node)
|
function Marks:get(node)
|
||||||
return node and self.marks[node.absolute_path]
|
return node and self.marks[node.absolute_path]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---List marked nodes
|
||||||
|
---@public
|
||||||
---@return Node[]
|
---@return Node[]
|
||||||
function Marks:get_marks()
|
function Marks:list()
|
||||||
local list = {}
|
local list = {}
|
||||||
for _, node in pairs(self.marks) do
|
for _, node in pairs(self.marks) do
|
||||||
table.insert(list, node)
|
table.insert(list, node)
|
||||||
@@ -67,12 +84,190 @@ function Marks:get_marks()
|
|||||||
return list
|
return list
|
||||||
end
|
end
|
||||||
|
|
||||||
function Marks.setup(opts)
|
---Delete marked; each removal will be optionally notified
|
||||||
renderer = require "nvim-tree.renderer"
|
---@public
|
||||||
|
function Marks:bulk_delete()
|
||||||
|
if not next(self.marks) then
|
||||||
|
notify.warn "No bookmarks to delete."
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
require("nvim-tree.marks.bulk-delete").setup(opts)
|
local function execute()
|
||||||
require("nvim-tree.marks.bulk-trash").setup(opts)
|
for _, node in pairs(self.marks) do
|
||||||
require("nvim-tree.marks.bulk-move").setup(opts)
|
remove_file.remove(node)
|
||||||
|
end
|
||||||
|
self:clear_reload()
|
||||||
|
end
|
||||||
|
|
||||||
|
if self.config.ui.confirm.remove then
|
||||||
|
local prompt_select = "Remove bookmarked ?"
|
||||||
|
local prompt_input = prompt_select .. " y/N: "
|
||||||
|
lib.prompt(prompt_input, prompt_select, { "", "y" }, { "No", "Yes" }, "nvimtree_bulk_delete", function(item_short)
|
||||||
|
utils.clear_prompt()
|
||||||
|
if item_short == "y" then
|
||||||
|
execute()
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
else
|
||||||
|
execute()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Trash marked; each removal will be optionally notified
|
||||||
|
---@public
|
||||||
|
function Marks:bulk_trash()
|
||||||
|
if not next(self.marks) then
|
||||||
|
notify.warn "No bookmarks to trash."
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local function execute()
|
||||||
|
for _, node in pairs(self.marks) do
|
||||||
|
trash.remove(node)
|
||||||
|
end
|
||||||
|
self:clear_reload()
|
||||||
|
end
|
||||||
|
|
||||||
|
if self.config.ui.confirm.trash then
|
||||||
|
local prompt_select = "Trash bookmarked ?"
|
||||||
|
local prompt_input = prompt_select .. " y/N: "
|
||||||
|
lib.prompt(prompt_input, prompt_select, { "", "y" }, { "No", "Yes" }, "nvimtree_bulk_trash", function(item_short)
|
||||||
|
utils.clear_prompt()
|
||||||
|
if item_short == "y" then
|
||||||
|
execute()
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
else
|
||||||
|
execute()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Move marked
|
||||||
|
---@public
|
||||||
|
function Marks:bulk_move()
|
||||||
|
if not next(self.marks) then
|
||||||
|
notify.warn "No bookmarks to move."
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local node_at_cursor = lib.get_node_at_cursor()
|
||||||
|
local default_path = core.get_cwd()
|
||||||
|
|
||||||
|
if node_at_cursor and node_at_cursor.type == "directory" then
|
||||||
|
default_path = node_at_cursor.absolute_path
|
||||||
|
elseif node_at_cursor and node_at_cursor.parent then
|
||||||
|
default_path = node_at_cursor.parent.absolute_path
|
||||||
|
end
|
||||||
|
|
||||||
|
local input_opts = {
|
||||||
|
prompt = "Move to: ",
|
||||||
|
default = default_path,
|
||||||
|
completion = "dir",
|
||||||
|
}
|
||||||
|
|
||||||
|
vim.ui.input(input_opts, function(location)
|
||||||
|
utils.clear_prompt()
|
||||||
|
if not location or location == "" then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if vim.fn.filewritable(location) ~= 2 then
|
||||||
|
notify.warn(location .. " is not writable, cannot move.")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
for _, node in pairs(self.marks) do
|
||||||
|
local head = vim.fn.fnamemodify(node.absolute_path, ":t")
|
||||||
|
local to = utils.path_join { location, head }
|
||||||
|
rename_file.rename(node, to)
|
||||||
|
end
|
||||||
|
|
||||||
|
self:clear_reload()
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
---Focus nearest marked node in direction.
|
||||||
|
---@private
|
||||||
|
---@param up boolean
|
||||||
|
function Marks:navigate(up)
|
||||||
|
local node = lib.get_node_at_cursor()
|
||||||
|
if not node then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local first, prev, next, last = nil, nil, nil, nil
|
||||||
|
local found = false
|
||||||
|
|
||||||
|
Iterator.builder(self.explorer.nodes)
|
||||||
|
:recursor(function(n)
|
||||||
|
return n.open and n.nodes
|
||||||
|
end)
|
||||||
|
:applier(function(n)
|
||||||
|
if n.absolute_path == node.absolute_path then
|
||||||
|
found = true
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if not self:get(n) then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
last = n
|
||||||
|
first = first or n
|
||||||
|
|
||||||
|
if found and not next then
|
||||||
|
next = n
|
||||||
|
end
|
||||||
|
|
||||||
|
if not found then
|
||||||
|
prev = n
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
:iterate()
|
||||||
|
|
||||||
|
if not found then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if up then
|
||||||
|
utils.focus_node_or_parent(prev or last)
|
||||||
|
else
|
||||||
|
utils.focus_node_or_parent(next or first)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---@public
|
||||||
|
function Marks:navigate_prev()
|
||||||
|
self:navigate(true)
|
||||||
|
end
|
||||||
|
|
||||||
|
---@public
|
||||||
|
function Marks:navigate_next()
|
||||||
|
self:navigate(false)
|
||||||
|
end
|
||||||
|
|
||||||
|
---Prompts for selection of a marked node, sorted by absolute paths.
|
||||||
|
---A folder will be focused, a file will be opened.
|
||||||
|
---@public
|
||||||
|
function Marks:navigate_select()
|
||||||
|
local list = vim.tbl_map(function(n)
|
||||||
|
return n.absolute_path
|
||||||
|
end, self:list())
|
||||||
|
|
||||||
|
table.sort(list)
|
||||||
|
|
||||||
|
vim.ui.select(list, {
|
||||||
|
prompt = "Select a file to open or a folder to focus",
|
||||||
|
}, function(choice)
|
||||||
|
if not choice or choice == "" then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local node = self.marks[choice]
|
||||||
|
if node and not node.nodes and not utils.get_win_buf_from_path(node.absolute_path) then
|
||||||
|
open_file.fn("edit", node.absolute_path)
|
||||||
|
elseif node then
|
||||||
|
utils.focus_file(node.absolute_path)
|
||||||
|
end
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
return Marks
|
return Marks
|
||||||
|
|||||||
@@ -1,111 +0,0 @@
|
|||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
|
||||||
local core = require "nvim-tree.core"
|
|
||||||
local open_file = require "nvim-tree.actions.node.open-file"
|
|
||||||
local utils = require "nvim-tree.utils"
|
|
||||||
local lib = require "nvim-tree.lib"
|
|
||||||
|
|
||||||
---@param node table
|
|
||||||
---@param where string
|
|
||||||
---@return Node|nil
|
|
||||||
local function get_nearest(node, where)
|
|
||||||
local explorer = core.get_explorer()
|
|
||||||
if not explorer then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local first, prev, next, last = nil, nil, nil, nil
|
|
||||||
local found = false
|
|
||||||
|
|
||||||
Iterator.builder(explorer.nodes)
|
|
||||||
:recursor(function(n)
|
|
||||||
return n.open and n.nodes
|
|
||||||
end)
|
|
||||||
:applier(function(n)
|
|
||||||
if n.absolute_path == node.absolute_path then
|
|
||||||
found = true
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
if not explorer.marks:get_mark(n) then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
last = n
|
|
||||||
first = first or n
|
|
||||||
|
|
||||||
if found and not next then
|
|
||||||
next = n
|
|
||||||
end
|
|
||||||
|
|
||||||
if not found then
|
|
||||||
prev = n
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
:iterate()
|
|
||||||
|
|
||||||
if not found then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
if where == "next" then
|
|
||||||
return next or first
|
|
||||||
else
|
|
||||||
return prev or last
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param where string
|
|
||||||
---@param node table|nil
|
|
||||||
---@return Node|nil
|
|
||||||
local function get(where, node)
|
|
||||||
if node then
|
|
||||||
return get_nearest(node, where)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node table|nil
|
|
||||||
local function open_or_focus(node)
|
|
||||||
if node and not node.nodes and not utils.get_win_buf_from_path(node.absolute_path) then
|
|
||||||
open_file.fn("edit", node.absolute_path)
|
|
||||||
elseif node then
|
|
||||||
utils.focus_file(node.absolute_path)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param where string
|
|
||||||
---@return function
|
|
||||||
local function navigate_to(where)
|
|
||||||
return function()
|
|
||||||
local node = lib.get_node_at_cursor()
|
|
||||||
local next = get(where, node)
|
|
||||||
open_or_focus(next)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
M.next = navigate_to "next"
|
|
||||||
M.prev = navigate_to "prev"
|
|
||||||
|
|
||||||
function M.select()
|
|
||||||
local explorer = core.get_explorer()
|
|
||||||
if not explorer then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local list = vim.tbl_map(function(n)
|
|
||||||
return n.absolute_path
|
|
||||||
end, explorer.marks:get_marks())
|
|
||||||
|
|
||||||
vim.ui.select(list, {
|
|
||||||
prompt = "Select a file to open or a folder to focus",
|
|
||||||
}, function(choice)
|
|
||||||
if not choice or choice == "" then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
local node = explorer.marks:get_mark { absolute_path = choice }
|
|
||||||
open_or_focus(node)
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -34,7 +34,7 @@ end
|
|||||||
---@param node Node
|
---@param node Node
|
||||||
---@return HighlightedString[]|nil icons
|
---@return HighlightedString[]|nil icons
|
||||||
function DecoratorBookmarks:calculate_icons(node)
|
function DecoratorBookmarks:calculate_icons(node)
|
||||||
if core.get_explorer() and core.get_explorer().marks:get_mark(node) then
|
if core.get_explorer() and core.get_explorer().marks:get(node) then
|
||||||
return { self.icon }
|
return { self.icon }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -43,7 +43,7 @@ end
|
|||||||
---@param node Node
|
---@param node Node
|
||||||
---@return string|nil group
|
---@return string|nil group
|
||||||
function DecoratorBookmarks:calculate_highlight(node)
|
function DecoratorBookmarks:calculate_highlight(node)
|
||||||
if self.hl_pos ~= HL_POSITION.none and core.get_explorer() and core.get_explorer().marks:get_mark(node) then
|
if self.hl_pos ~= HL_POSITION.none and core.get_explorer() and core.get_explorer().marks:get(node) then
|
||||||
return "NvimTreeBookmarkHL"
|
return "NvimTreeBookmarkHL"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
local copy_paste
|
local core = require "nvim-tree.core"
|
||||||
|
|
||||||
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
@@ -20,9 +20,6 @@ function DecoratorCopied:new(opts)
|
|||||||
})
|
})
|
||||||
---@cast o DecoratorCopied
|
---@cast o DecoratorCopied
|
||||||
|
|
||||||
-- cyclic
|
|
||||||
copy_paste = copy_paste or require "nvim-tree.actions.fs.copy-paste"
|
|
||||||
|
|
||||||
return o
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -30,7 +27,7 @@ end
|
|||||||
---@param node Node
|
---@param node Node
|
||||||
---@return string|nil group
|
---@return string|nil group
|
||||||
function DecoratorCopied:calculate_highlight(node)
|
function DecoratorCopied:calculate_highlight(node)
|
||||||
if self.hl_pos ~= HL_POSITION.none and copy_paste.is_copied(node) then
|
if self.hl_pos ~= HL_POSITION.none and core.get_explorer() and core.get_explorer().clipboard:is_copied(node) then
|
||||||
return "NvimTreeCopiedHL"
|
return "NvimTreeCopiedHL"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
local copy_paste
|
local core = require "nvim-tree.core"
|
||||||
|
|
||||||
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
@@ -20,9 +20,6 @@ function DecoratorCut:new(opts)
|
|||||||
})
|
})
|
||||||
---@cast o DecoratorCut
|
---@cast o DecoratorCut
|
||||||
|
|
||||||
-- cyclic
|
|
||||||
copy_paste = copy_paste or require "nvim-tree.actions.fs.copy-paste"
|
|
||||||
|
|
||||||
return o
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -30,7 +27,7 @@ end
|
|||||||
---@param node Node
|
---@param node Node
|
||||||
---@return string|nil group
|
---@return string|nil group
|
||||||
function DecoratorCut:calculate_highlight(node)
|
function DecoratorCut:calculate_highlight(node)
|
||||||
if self.hl_pos ~= HL_POSITION.none and copy_paste.is_cut(node) then
|
if self.hl_pos ~= HL_POSITION.none and core.get_explorer() and core.get_explorer().clipboard:is_cut(node) then
|
||||||
return "NvimTreeCutHL"
|
return "NvimTreeCutHL"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ function DecoratorHidden:new(opts)
|
|||||||
return o
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
---Hidden icon: hidden.enable, renderer.icons.show.hidden and node starts with `.` (dotfile).
|
---Hidden icon: renderer.icons.show.hidden and node starts with `.` (dotfile).
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@return HighlightedString[]|nil icons
|
---@return HighlightedString[]|nil icons
|
||||||
function DecoratorHidden:calculate_icons(node)
|
function DecoratorHidden:calculate_icons(node)
|
||||||
@@ -37,7 +37,7 @@ function DecoratorHidden:calculate_icons(node)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---Hidden highlight: hidden.enable, renderer.highlight_hidden and node starts with `.` (dotfile).
|
---Hidden highlight: renderer.highlight_hidden and node starts with `.` (dotfile).
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@return string|nil group
|
---@return string|nil group
|
||||||
function DecoratorHidden:calculate_highlight(node)
|
function DecoratorHidden:calculate_highlight(node)
|
||||||
|
|||||||
@@ -346,14 +346,18 @@ function M.resize(size)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local winnr = M.get_winnr() or 0
|
||||||
|
|
||||||
local new_size = get_width()
|
local new_size = get_width()
|
||||||
vim.api.nvim_win_set_width(M.get_winnr() or 0, new_size)
|
|
||||||
|
if new_size ~= vim.api.nvim_win_get_width(winnr) then
|
||||||
|
vim.api.nvim_win_set_width(winnr, new_size)
|
||||||
|
if not M.View.preserve_window_proportions then
|
||||||
|
vim.cmd ":wincmd ="
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
events._dispatch_on_tree_resize(new_size)
|
events._dispatch_on_tree_resize(new_size)
|
||||||
|
|
||||||
if not M.View.preserve_window_proportions then
|
|
||||||
vim.cmd ":wincmd ="
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.reposition_window()
|
function M.reposition_window()
|
||||||
|
|||||||
Reference in New Issue
Block a user