Compare commits
40 Commits
v1.5.0
...
nvim-tree-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4a9e82d10a | ||
|
|
4520c0355c | ||
|
|
1ae1c33ce1 | ||
|
|
9650e735ba | ||
|
|
59a8a6ae5e | ||
|
|
0429f286b3 | ||
|
|
8405ecfbd6 | ||
|
|
0ae9ad4ded | ||
|
|
e7cdecc636 | ||
|
|
b18ce8be8f | ||
|
|
03ae60313b | ||
|
|
45a93d9979 | ||
|
|
bd4881660b | ||
|
|
cd9c6db77f | ||
|
|
03f737e574 | ||
|
|
a4dd5ad5c8 | ||
|
|
b652dbd0e0 | ||
|
|
d41b4ca013 | ||
|
|
2d6e64dd8c | ||
|
|
cb57691536 | ||
|
|
70d7377c3f | ||
|
|
ea55ef1203 | ||
|
|
43c3c36c7a | ||
|
|
d43ab67d0e | ||
|
|
6fbcb5a892 | ||
|
|
e962e97cab | ||
|
|
42340952af | ||
|
|
210478677c | ||
|
|
ad0b95dee5 | ||
|
|
466fbed3e4 | ||
|
|
15942df2bb | ||
|
|
e25eb7fa83 | ||
|
|
48d0e82f94 | ||
|
|
82ba116bbd | ||
|
|
908478a0e0 | ||
|
|
1aa9852cad | ||
|
|
4e396b2624 | ||
|
|
48a9290757 | ||
|
|
b2640685a8 | ||
|
|
1d629a5d3f |
@@ -4,9 +4,17 @@ root = true
|
|||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
|
|
||||||
[*.lua]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
[nvim-tree-lua.txt]
|
[nvim-tree-lua.txt]
|
||||||
max_line_length = 78
|
max_line_length = 78
|
||||||
|
|
||||||
|
[*.lua]
|
||||||
|
indent_style = space
|
||||||
|
max_line_length = 140
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# EmmyLuaCodeStyle specific, see
|
||||||
|
# https://github.com/CppCXY/EmmyLuaCodeStyle/blob/master/lua.template.editorconfig
|
||||||
|
continuation_indent = 2
|
||||||
|
quote_style = double
|
||||||
|
call_arg_parentheses = always
|
||||||
|
space_before_closure_open_parenthesis = false
|
||||||
|
|||||||
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
@@ -38,22 +38,24 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ matrix.stylua_version }}-${{ github.head_ref || github.ref_name }}
|
group: ${{ github.workflow }}-${{ matrix.emmy_lua_code_style_version }}-${{ github.head_ref || github.ref_name }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
stylua_version: [ 0.19.1 ]
|
emmy_lua_code_style_version: [ 1.5.6 ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: stylua
|
- name: install emmy_lua_code_style
|
||||||
uses: JohnnyMorganz/stylua-action@v4
|
run: |
|
||||||
with:
|
mkdir -p CodeFormat
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
curl -L "https://github.com/CppCXY/EmmyLuaCodeStyle/releases/download/${{ matrix.emmy_lua_code_style_version }}/linux-x64.tar.gz" | tar zx --directory CodeFormat
|
||||||
version: ${{ matrix.stylua_version }}
|
|
||||||
args: --check lua
|
- run: echo "CodeFormat/linux-x64/bin" >> "$GITHUB_PATH"
|
||||||
|
|
||||||
|
- run: make style
|
||||||
|
|
||||||
- run: make style-doc
|
- run: make style-doc
|
||||||
|
|
||||||
@@ -67,7 +69,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
|
||||||
|
|||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,2 +1,4 @@
|
|||||||
/luals-out/
|
/luals-out/
|
||||||
/luals/
|
/luals/
|
||||||
|
# backup vim files
|
||||||
|
*~
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
".": "1.5.0"
|
".": "1.7.1"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
column_width = 140
|
|
||||||
line_endings = "Unix"
|
|
||||||
indent_type = "Spaces"
|
|
||||||
indent_width = 2
|
|
||||||
quote_style = "AutoPreferDouble"
|
|
||||||
call_parentheses = "None"
|
|
||||||
57
CHANGELOG.md
57
CHANGELOG.md
@@ -1,5 +1,62 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.7.1](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.7.0...nvim-tree-v1.7.1) (2024-09-30)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2794:** sshfs compatibility ([#2922](https://github.com/nvim-tree/nvim-tree.lua/issues/2922)) ([9650e73](https://github.com/nvim-tree/nvim-tree.lua/commit/9650e735baad0d39505f4cb4867a60f02858536a))
|
||||||
|
* **#2928:** nil explorer in parent move action ([#2929](https://github.com/nvim-tree/nvim-tree.lua/issues/2929)) ([0429f28](https://github.com/nvim-tree/nvim-tree.lua/commit/0429f286b350c65118d66b646775bf187936fa47))
|
||||||
|
* **#2930:** empty groups expanded on reload ([#2935](https://github.com/nvim-tree/nvim-tree.lua/issues/2935)) ([4520c03](https://github.com/nvim-tree/nvim-tree.lua/commit/4520c0355cc561830ee2cf90dc37a2a75abf7995))
|
||||||
|
* invalid explorer on open ([#2927](https://github.com/nvim-tree/nvim-tree.lua/issues/2927)) ([59a8a6a](https://github.com/nvim-tree/nvim-tree.lua/commit/59a8a6ae5e9d3eae99d08ab655d12fd51d5d17f3))
|
||||||
|
|
||||||
|
|
||||||
|
### Reverts
|
||||||
|
|
||||||
|
* **#2794:** sshfs compatibility ([#2920](https://github.com/nvim-tree/nvim-tree.lua/issues/2920)) ([8405ecf](https://github.com/nvim-tree/nvim-tree.lua/commit/8405ecfbd6bb08a94ffc9c68fef211eea56e8a3b))
|
||||||
|
|
||||||
|
## [1.7.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.6.1...nvim-tree-v1.7.0) (2024-09-21)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **#2430:** use vim.ui.open as default system_open, for neovim 0.10+ ([#2912](https://github.com/nvim-tree/nvim-tree.lua/issues/2912)) ([03f737e](https://github.com/nvim-tree/nvim-tree.lua/commit/03f737e5744a2b3ebb4b086f7636a3399224ec0c))
|
||||||
|
* help closes on <Esc> and api.tree.toggle_help mappings ([#2909](https://github.com/nvim-tree/nvim-tree.lua/issues/2909)) ([b652dbd](https://github.com/nvim-tree/nvim-tree.lua/commit/b652dbd0e0489c5fbb81fbededf0d99029cd2f38))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2862:** windows path replaces backslashes with forward slashes ([#2903](https://github.com/nvim-tree/nvim-tree.lua/issues/2903)) ([45a93d9](https://github.com/nvim-tree/nvim-tree.lua/commit/45a93d99794fff3064141d5b3a50db98ce352697))
|
||||||
|
* **#2906:** resource leak on populate children ([#2907](https://github.com/nvim-tree/nvim-tree.lua/issues/2907)) ([a4dd5ad](https://github.com/nvim-tree/nvim-tree.lua/commit/a4dd5ad5c8f9349142291d24e0e6466995594b9a))
|
||||||
|
* **#2917:** fix root copy paths: Y, ge, gy, y ([#2918](https://github.com/nvim-tree/nvim-tree.lua/issues/2918)) ([b18ce8b](https://github.com/nvim-tree/nvim-tree.lua/commit/b18ce8be8f162eee0bc37addcfe17d7d019fcec7))
|
||||||
|
* safely close last tree window ([#2913](https://github.com/nvim-tree/nvim-tree.lua/issues/2913)) ([bd48816](https://github.com/nvim-tree/nvim-tree.lua/commit/bd4881660bf0ddfa6acb21259f856ba3dcb26a93))
|
||||||
|
* safely close tree window with pcall and debug logging ([bd48816](https://github.com/nvim-tree/nvim-tree.lua/commit/bd4881660bf0ddfa6acb21259f856ba3dcb26a93))
|
||||||
|
|
||||||
|
## [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)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **#2225:** add renderer.hidden_display to show a summary of hidden files below the tree ([#2856](https://github.com/nvim-tree/nvim-tree.lua/issues/2856)) ([e25eb7f](https://github.com/nvim-tree/nvim-tree.lua/commit/e25eb7fa83f7614bb23d762e91d2de44fcd7103b))
|
||||||
|
* **#2349:** add "right_align" option for renderer.icons.*_placement ([#2839](https://github.com/nvim-tree/nvim-tree.lua/issues/2839)) ([1d629a5](https://github.com/nvim-tree/nvim-tree.lua/commit/1d629a5d3f7d83d516494c221a2cfc079f43bc47))
|
||||||
|
* **#2349:** add "right_align" option for renderer.icons.*_placement ([#2846](https://github.com/nvim-tree/nvim-tree.lua/issues/2846)) ([48d0e82](https://github.com/nvim-tree/nvim-tree.lua/commit/48d0e82f9434691cc50d970898142a8c084a49d6))
|
||||||
|
* add renderer.highlight_hidden, renderer.icons.show.hidden and renderer.icons.hidden_placement for dotfile icons/highlights ([#2840](https://github.com/nvim-tree/nvim-tree.lua/issues/2840)) ([48a9290](https://github.com/nvim-tree/nvim-tree.lua/commit/48a92907575df1dbd7242975a04e98169cb3a115))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2859:** make sure window still exists when restoring options ([#2863](https://github.com/nvim-tree/nvim-tree.lua/issues/2863)) ([466fbed](https://github.com/nvim-tree/nvim-tree.lua/commit/466fbed3e4b61fcc23a48fe99de7bfa264a9fee8))
|
||||||
|
|
||||||
## [1.5.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.4.0...nvim-tree-v1.5.0) (2024-07-11)
|
## [1.5.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.4.0...nvim-tree-v1.5.0) (2024-07-11)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,11 +8,13 @@ See [Development](https://github.com/nvim-tree/nvim-tree.lua/wiki/Development) f
|
|||||||
|
|
||||||
Following are used during CI and strongly recommended during local development.
|
Following are used during CI and strongly recommended during local development.
|
||||||
|
|
||||||
|
Language server: [luals](https://luals.github.io)
|
||||||
|
|
||||||
Lint: [luacheck](https://github.com/lunarmodules/luacheck/)
|
Lint: [luacheck](https://github.com/lunarmodules/luacheck/)
|
||||||
|
|
||||||
Style: [StyLua](https://github.com/JohnnyMorganz/StyLua)
|
Style: [EmmyLuaCodeStyle](https://github.com/CppCXY/EmmyLuaCodeStyle): `CodeCheck`
|
||||||
|
|
||||||
Language server: [luals](https://luals.github.io)
|
nvim-tree.lua migrated from stylua to EmmyLuaCodeStyle ~2024/10. `vim.lsp.buf.format()` may be used as it is the default formatter for luals
|
||||||
|
|
||||||
You can install them via you OS package manager e.g. `pacman`, `brew` or other via other package managers such as `cargo` or `luarocks`
|
You can install them via you OS package manager e.g. `pacman`, `brew` or other via other package managers such as `cargo` or `luarocks`
|
||||||
|
|
||||||
@@ -34,14 +36,14 @@ make lint
|
|||||||
|
|
||||||
## style
|
## style
|
||||||
|
|
||||||
1. Runs stylua using `.stylua.toml` settings
|
1. Runs CodeCheck using `.editorconfig` settings
|
||||||
1. Runs `scripts/doc-comments.sh` to validate annotated documentation
|
1. Runs `scripts/doc-comments.sh` to validate annotated documentation
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
make style
|
make style
|
||||||
```
|
```
|
||||||
|
|
||||||
You can automatically fix stylua issues via:
|
You can automatically fix `CodeCheck` issues via:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
make style-fix
|
make style-fix
|
||||||
|
|||||||
11
Makefile
11
Makefile
@@ -5,7 +5,7 @@ all: lint style check
|
|||||||
#
|
#
|
||||||
lint: luacheck
|
lint: luacheck
|
||||||
|
|
||||||
style: stylua style-doc
|
style: style-check style-doc
|
||||||
|
|
||||||
check: luals
|
check: luals
|
||||||
|
|
||||||
@@ -15,8 +15,9 @@ check: luals
|
|||||||
luacheck:
|
luacheck:
|
||||||
luacheck -q lua
|
luacheck -q lua
|
||||||
|
|
||||||
stylua:
|
# --diagnosis-as-error does not function for workspace, hence we post-process the output
|
||||||
stylua lua --check
|
style-check:
|
||||||
|
CodeFormat check --config .editorconfig --diagnosis-as-error --workspace lua
|
||||||
|
|
||||||
style-doc:
|
style-doc:
|
||||||
scripts/doc-comments.sh
|
scripts/doc-comments.sh
|
||||||
@@ -28,7 +29,7 @@ luals:
|
|||||||
# fixes
|
# fixes
|
||||||
#
|
#
|
||||||
style-fix:
|
style-fix:
|
||||||
stylua lua
|
CodeFormat format --config .editorconfig --workspace lua
|
||||||
|
|
||||||
#
|
#
|
||||||
# utility
|
# utility
|
||||||
@@ -43,5 +44,5 @@ help-check: help-update
|
|||||||
git diff --exit-code doc/nvim-tree-lua.txt
|
git diff --exit-code doc/nvim-tree-lua.txt
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all lint style check luacheck stylua style-doc luals style-fix help-update help-check
|
.PHONY: all lint style check luacheck style-check style-doc luals style-fix help-update help-check
|
||||||
|
|
||||||
|
|||||||
@@ -423,11 +423,13 @@ Following is the default configuration. See |nvim-tree-opts| for details.
|
|||||||
root_folder_label = ":~:s?$?/..?",
|
root_folder_label = ":~:s?$?/..?",
|
||||||
indent_width = 2,
|
indent_width = 2,
|
||||||
special_files = { "Cargo.toml", "Makefile", "README.md", "readme.md" },
|
special_files = { "Cargo.toml", "Makefile", "README.md", "readme.md" },
|
||||||
|
hidden_display = "none",
|
||||||
symlink_destination = true,
|
symlink_destination = true,
|
||||||
highlight_git = "none",
|
highlight_git = "none",
|
||||||
highlight_diagnostics = "none",
|
highlight_diagnostics = "none",
|
||||||
highlight_opened_files = "none",
|
highlight_opened_files = "none",
|
||||||
highlight_modified = "none",
|
highlight_modified = "none",
|
||||||
|
highlight_hidden = "none",
|
||||||
highlight_bookmarks = "none",
|
highlight_bookmarks = "none",
|
||||||
highlight_clipboard = "name",
|
highlight_clipboard = "name",
|
||||||
indent_markers = {
|
indent_markers = {
|
||||||
@@ -454,6 +456,7 @@ Following is the default configuration. See |nvim-tree-opts| for details.
|
|||||||
},
|
},
|
||||||
git_placement = "before",
|
git_placement = "before",
|
||||||
modified_placement = "after",
|
modified_placement = "after",
|
||||||
|
hidden_placement = "after",
|
||||||
diagnostics_placement = "signcolumn",
|
diagnostics_placement = "signcolumn",
|
||||||
bookmarks_placement = "signcolumn",
|
bookmarks_placement = "signcolumn",
|
||||||
padding = " ",
|
padding = " ",
|
||||||
@@ -464,6 +467,7 @@ Following is the default configuration. See |nvim-tree-opts| for details.
|
|||||||
folder_arrow = true,
|
folder_arrow = true,
|
||||||
git = true,
|
git = true,
|
||||||
modified = true,
|
modified = true,
|
||||||
|
hidden = false,
|
||||||
diagnostics = true,
|
diagnostics = true,
|
||||||
bookmarks = true,
|
bookmarks = true,
|
||||||
},
|
},
|
||||||
@@ -472,6 +476,7 @@ Following is the default configuration. See |nvim-tree-opts| for details.
|
|||||||
symlink = "",
|
symlink = "",
|
||||||
bookmark = "",
|
bookmark = "",
|
||||||
modified = "●",
|
modified = "●",
|
||||||
|
hidden = "",
|
||||||
folder = {
|
folder = {
|
||||||
arrow_closed = "",
|
arrow_closed = "",
|
||||||
arrow_open = "",
|
arrow_open = "",
|
||||||
@@ -874,6 +879,49 @@ Number of spaces for an each tree nesting level. Minimum 1.
|
|||||||
A list of filenames that gets highlighted with `NvimTreeSpecialFile`.
|
A list of filenames that gets highlighted with `NvimTreeSpecialFile`.
|
||||||
Type: `table`, Default: `{ "Cargo.toml", "Makefile", "README.md", "readme.md", }`
|
Type: `table`, Default: `{ "Cargo.toml", "Makefile", "README.md", "readme.md", }`
|
||||||
|
|
||||||
|
*nvim-tree.renderer.hidden_display*
|
||||||
|
Show a summary of hidden files below the tree using `NvimTreeHiddenDisplay
|
||||||
|
Type: `function | string`, Default: `"none"`
|
||||||
|
|
||||||
|
Possible string values are:
|
||||||
|
- `"none"`: Doesn't inform anything about hidden files.
|
||||||
|
- `"simple"`: Shows how many hidden files are in a folder.
|
||||||
|
- `"all"`: Shows how many files are hidden and the number of hidden
|
||||||
|
files per reason why they're hidden.
|
||||||
|
|
||||||
|
Example `"all"`:
|
||||||
|
If a folder has 14 hidden items for various reasons, the display might
|
||||||
|
show: >
|
||||||
|
(14 total git: 5, dotfile: 9)
|
||||||
|
<
|
||||||
|
If a function is provided, it receives a table `hidden_stats` where keys are
|
||||||
|
reasons and values are the count of hidden files for that reason.
|
||||||
|
|
||||||
|
The `hidden_stats` argument is structured as follows, where <num> is the
|
||||||
|
number of hidden files related to the field: >
|
||||||
|
hidden_stats = {
|
||||||
|
bookmark = <num>,
|
||||||
|
buf = <num>,
|
||||||
|
custom = <num>,
|
||||||
|
dotfile = <num>,
|
||||||
|
git = <num>,
|
||||||
|
live_filter = <num>,
|
||||||
|
}
|
||||||
|
<
|
||||||
|
Example of function that can be passed: >
|
||||||
|
function(hidden_stats)
|
||||||
|
local total_count = 0
|
||||||
|
for reason, count in pairs(hidden_stats) do
|
||||||
|
total_count = total_count + count
|
||||||
|
end
|
||||||
|
|
||||||
|
if total_count > 0 then
|
||||||
|
return "(" .. tostring(total_count) .. " hidden)"
|
||||||
|
end
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
<
|
||||||
|
|
||||||
*nvim-tree.renderer.symlink_destination*
|
*nvim-tree.renderer.symlink_destination*
|
||||||
Whether to show the destination of the symlink.
|
Whether to show the destination of the symlink.
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
@@ -904,6 +952,12 @@ Requires |nvim-tree.modified.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"`
|
||||||
|
|
||||||
|
*nvim-tree.renderer.highlight_hidden*
|
||||||
|
Highlight icons and/or names for hidden files (dotfiles) using the
|
||||||
|
`NvimTreeHiddenFileHL` highlight group.
|
||||||
|
Value can be `"none"`, `"icon"`, `"name"` or `"all"`
|
||||||
|
Type: `string`, Default `"none"`
|
||||||
|
|
||||||
*nvim-tree.renderer.highlight_bookmarks*
|
*nvim-tree.renderer.highlight_bookmarks*
|
||||||
Highlight bookmarked using the `NvimTreeBookmarkHL` group.
|
Highlight bookmarked using the `NvimTreeBookmarkHL` group.
|
||||||
Value can be `"none"`, `"icon"`, `"name"` or `"all"`
|
Value can be `"none"`, `"icon"`, `"name"` or `"all"`
|
||||||
@@ -942,7 +996,13 @@ Configuration options for tree indent markers.
|
|||||||
Configuration options for icons.
|
Configuration options for icons.
|
||||||
|
|
||||||
Icon order and sign column precedence:
|
Icon order and sign column precedence:
|
||||||
git < modified < bookmarked < diagnostics
|
git < hidden < modified < bookmarked < diagnostics
|
||||||
|
|
||||||
|
`renderer.icons.*_placement` options may be:
|
||||||
|
- `"before"` : before file/folder, after the file/folders icons
|
||||||
|
- `"after"` : after file/folder
|
||||||
|
- `"signcolumn"` : far left, requires |nvim-tree.view.signcolumn| enabled
|
||||||
|
- `"right_align"` : far right
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.web_devicons*
|
*nvim-tree.renderer.icons.web_devicons*
|
||||||
Configure optional plugin `"nvim-tree/nvim-web-devicons"`
|
Configure optional plugin `"nvim-tree/nvim-web-devicons"`
|
||||||
@@ -972,27 +1032,23 @@ Icon order and sign column precedence:
|
|||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.git_placement*
|
*nvim-tree.renderer.icons.git_placement*
|
||||||
Place where the git icons will be rendered.
|
Git icons placement.
|
||||||
Can be `"after"` or `"before"` filename (after the file/folders icons)
|
|
||||||
or `"signcolumn"` (requires |nvim-tree.view.signcolumn| enabled).
|
|
||||||
Type: `string`, Default: `"before"`
|
Type: `string`, Default: `"before"`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.diagnostics_placement*
|
*nvim-tree.renderer.icons.diagnostics_placement*
|
||||||
Place where the diagnostics icon will be rendered.
|
Diganostic icon placement.
|
||||||
Can be `"after"` or `"before"` filename (after the file/folders icons)
|
|
||||||
or `"signcolumn"` (requires |nvim-tree.view.signcolumn| enabled).
|
|
||||||
Type: `string`, Default: `"signcolumn"`
|
Type: `string`, Default: `"signcolumn"`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.modified_placement*
|
*nvim-tree.renderer.icons.modified_placement*
|
||||||
Place where the modified icon will be rendered.
|
Modified icon placement.
|
||||||
Can be `"after"` or `"before"` filename (after the file/folders icons)
|
Type: `string`, Default: `"after"`
|
||||||
or `"signcolumn"` (requires |nvim-tree.view.signcolumn| enabled).
|
|
||||||
|
*nvim-tree.renderer.icons.hidden_placement*
|
||||||
|
Hidden icon placement.
|
||||||
Type: `string`, Default: `"after"`
|
Type: `string`, Default: `"after"`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.bookmarks_placement*
|
*nvim-tree.renderer.icons.bookmarks_placement*
|
||||||
Place where the bookmarks icon will be rendered.
|
Bookmark icon placement.
|
||||||
Can be `"after"` or `"before"` filename (after the file/folders icons)
|
|
||||||
or `"signcolumn"` (requires |nvim-tree.view.signcolumn| enabled).
|
|
||||||
Type: `string`, Default: `signcolumn`
|
Type: `string`, Default: `signcolumn`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.padding*
|
*nvim-tree.renderer.icons.padding*
|
||||||
@@ -1005,7 +1061,7 @@ Icon order and sign column precedence:
|
|||||||
|
|
||||||
*nvim-tree.renderer.icons.show*
|
*nvim-tree.renderer.icons.show*
|
||||||
Configuration options for showing icon types.
|
Configuration options for showing icon types.
|
||||||
Left to right order: file/folder, git, modified, diagnostics, bookmarked.
|
Left to right order: file/folder, git, modified, hidden, diagnostics, bookmarked.
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.show.file*
|
*nvim-tree.renderer.icons.show.file*
|
||||||
Show an icon before the file name.
|
Show an icon before the file name.
|
||||||
@@ -1030,6 +1086,10 @@ Icon order and sign column precedence:
|
|||||||
Requires |modified.enable| `= true`
|
Requires |modified.enable| `= true`
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
|
*nvim-tree.renderer.icons.show.hidden*
|
||||||
|
Show a hidden icon, see |renderer.icons.hidden_placement|
|
||||||
|
Type: `boolean`, Default: `false`
|
||||||
|
|
||||||
*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|
|
||||||
Requires |diagnostics.enable| `= true`
|
Requires |diagnostics.enable| `= true`
|
||||||
@@ -1057,6 +1117,10 @@ Icon order and sign column precedence:
|
|||||||
Icon to display for modified files.
|
Icon to display for modified files.
|
||||||
Type: `string`, Default: `"●"`
|
Type: `string`, Default: `"●"`
|
||||||
|
|
||||||
|
*nvim-tree.renderer.icons.glyphs.hidden*
|
||||||
|
Icon to display for hidden files.
|
||||||
|
Type: `string`, Default: `"""`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.glyphs.folder*
|
*nvim-tree.renderer.icons.glyphs.folder*
|
||||||
Glyphs for directories.
|
Glyphs for directories.
|
||||||
Overridden by |nvim-tree.renderer.icons.web_devicons| if available.
|
Overridden by |nvim-tree.renderer.icons.web_devicons| if available.
|
||||||
@@ -1134,11 +1198,18 @@ Takes the `BufEnter` event as an argument. see |autocmd-events|
|
|||||||
|
|
||||||
Open a file or directory in your preferred application.
|
Open a file or directory in your preferred application.
|
||||||
|
|
||||||
|
|vim.ui.open| was introduced in neovim 0.10 and is the default.
|
||||||
|
|
||||||
|
Once nvim-tree minimum neovim version is updated to 0.10, these options will
|
||||||
|
no longer be necessary and will be removed.
|
||||||
|
|
||||||
*nvim-tree.system_open.cmd*
|
*nvim-tree.system_open.cmd*
|
||||||
The open command itself.
|
The open command itself.
|
||||||
Type: `string`, Default: `""`
|
Type: `string`, Default: `""`
|
||||||
|
|
||||||
Leave empty for OS specific default:
|
neovim >= 0.10 defaults to |vim.ui.open|
|
||||||
|
|
||||||
|
neovim < 0.10 defaults to:
|
||||||
UNIX: `"xdg-open"`
|
UNIX: `"xdg-open"`
|
||||||
macOS: `"open"`
|
macOS: `"open"`
|
||||||
Windows: `"cmd"`
|
Windows: `"cmd"`
|
||||||
@@ -1505,7 +1576,7 @@ Specify minimum notification level, uses the values from |vim.log.levels|
|
|||||||
`ERROR`: hard errors e.g. failure to read from the file system.
|
`ERROR`: hard errors e.g. failure to read from the file system.
|
||||||
`WARNING`: non-fatal errors e.g. unable to system open a file.
|
`WARNING`: non-fatal errors e.g. unable to system open a file.
|
||||||
`INFO:` information only e.g. file copy path confirmation.
|
`INFO:` information only e.g. file copy path confirmation.
|
||||||
`DEBUG:` not used.
|
`DEBUG:` information for troubleshooting, e.g. failures in some window closing operations.
|
||||||
|
|
||||||
*nvim-tree.notify.absolute_path*
|
*nvim-tree.notify.absolute_path*
|
||||||
Whether to use absolute paths or item names in fs action notifications.
|
Whether to use absolute paths or item names in fs action notifications.
|
||||||
@@ -1615,10 +1686,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*
|
||||||
@@ -1744,9 +1813,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()
|
||||||
@@ -1821,86 +1892,93 @@ 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.basename({node}) *nvim-tree-api.fs.copy.basename()*
|
||||||
|
Copy the name of a file or folder with extension omitted to the system
|
||||||
|
clipboard.
|
||||||
|
|
||||||
|
Parameters: ~
|
||||||
|
• {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.
|
||||||
@@ -1911,34 +1989,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`.
|
||||||
@@ -1947,11 +2028,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.
|
||||||
|
|
||||||
@@ -1959,102 +2040,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|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
@@ -2129,8 +2211,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*
|
||||||
@@ -2232,7 +2314,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')
|
||||||
@@ -2433,6 +2516,14 @@ Modified: >
|
|||||||
NvimTreeModifiedIcon Type
|
NvimTreeModifiedIcon Type
|
||||||
NvimTreeModifiedFileHL NvimTreeModifiedIcon
|
NvimTreeModifiedFileHL NvimTreeModifiedIcon
|
||||||
NvimTreeModifiedFolderHL NvimTreeModifiedIcon
|
NvimTreeModifiedFolderHL NvimTreeModifiedIcon
|
||||||
|
|
||||||
|
Hidden: >
|
||||||
|
NvimTreeModifiedIcon Conceal
|
||||||
|
NvimTreeModifiedFileHL NvimTreeHiddenIcon
|
||||||
|
NvimTreeModifiedFolderHL NvimTreeHiddenFileHL
|
||||||
|
<
|
||||||
|
Hidden Display: >
|
||||||
|
NvimTreeHiddenDisplay Conceal
|
||||||
<
|
<
|
||||||
Opened: >
|
Opened: >
|
||||||
NvimTreeOpenedHL Special
|
NvimTreeOpenedHL Special
|
||||||
@@ -2660,10 +2751,6 @@ configurations for different types of prompts.
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
11. OS SPECIFIC RESTRICTIONS *nvim-tree-os-specific*
|
11. OS SPECIFIC RESTRICTIONS *nvim-tree-os-specific*
|
||||||
|
|
||||||
macOS
|
|
||||||
- Rename to different case is not possible when using a case insensitive file
|
|
||||||
system.
|
|
||||||
|
|
||||||
Windows WSL and PowerShell
|
Windows WSL and PowerShell
|
||||||
- Trash is synchronized
|
- Trash is synchronized
|
||||||
- Executable file detection is disabled as this is non-performant and can
|
- Executable file detection is disabled as this is non-performant and can
|
||||||
@@ -2849,10 +2936,12 @@ highlight group is not, hard linking as follows: >
|
|||||||
|nvim-tree.renderer.add_trailing|
|
|nvim-tree.renderer.add_trailing|
|
||||||
|nvim-tree.renderer.full_name|
|
|nvim-tree.renderer.full_name|
|
||||||
|nvim-tree.renderer.group_empty|
|
|nvim-tree.renderer.group_empty|
|
||||||
|
|nvim-tree.renderer.hidden_display|
|
||||||
|nvim-tree.renderer.highlight_bookmarks|
|
|nvim-tree.renderer.highlight_bookmarks|
|
||||||
|nvim-tree.renderer.highlight_clipboard|
|
|nvim-tree.renderer.highlight_clipboard|
|
||||||
|nvim-tree.renderer.highlight_diagnostics|
|
|nvim-tree.renderer.highlight_diagnostics|
|
||||||
|nvim-tree.renderer.highlight_git|
|
|nvim-tree.renderer.highlight_git|
|
||||||
|
|nvim-tree.renderer.highlight_hidden|
|
||||||
|nvim-tree.renderer.highlight_modified|
|
|nvim-tree.renderer.highlight_modified|
|
||||||
|nvim-tree.renderer.highlight_opened_files|
|
|nvim-tree.renderer.highlight_opened_files|
|
||||||
|nvim-tree.renderer.icons|
|
|nvim-tree.renderer.icons|
|
||||||
@@ -2863,8 +2952,10 @@ highlight group is not, hard linking as follows: >
|
|||||||
|nvim-tree.renderer.icons.glyphs.default|
|
|nvim-tree.renderer.icons.glyphs.default|
|
||||||
|nvim-tree.renderer.icons.glyphs.folder|
|
|nvim-tree.renderer.icons.glyphs.folder|
|
||||||
|nvim-tree.renderer.icons.glyphs.git|
|
|nvim-tree.renderer.icons.glyphs.git|
|
||||||
|
|nvim-tree.renderer.icons.glyphs.hidden|
|
||||||
|nvim-tree.renderer.icons.glyphs.modified|
|
|nvim-tree.renderer.icons.glyphs.modified|
|
||||||
|nvim-tree.renderer.icons.glyphs.symlink|
|
|nvim-tree.renderer.icons.glyphs.symlink|
|
||||||
|
|nvim-tree.renderer.icons.hidden_placement|
|
||||||
|nvim-tree.renderer.icons.modified_placement|
|
|nvim-tree.renderer.icons.modified_placement|
|
||||||
|nvim-tree.renderer.icons.padding|
|
|nvim-tree.renderer.icons.padding|
|
||||||
|nvim-tree.renderer.icons.show|
|
|nvim-tree.renderer.icons.show|
|
||||||
@@ -2874,6 +2965,7 @@ highlight group is not, hard linking as follows: >
|
|||||||
|nvim-tree.renderer.icons.show.folder|
|
|nvim-tree.renderer.icons.show.folder|
|
||||||
|nvim-tree.renderer.icons.show.folder_arrow|
|
|nvim-tree.renderer.icons.show.folder_arrow|
|
||||||
|nvim-tree.renderer.icons.show.git|
|
|nvim-tree.renderer.icons.show.git|
|
||||||
|
|nvim-tree.renderer.icons.show.hidden|
|
||||||
|nvim-tree.renderer.icons.show.modified|
|
|nvim-tree.renderer.icons.show.modified|
|
||||||
|nvim-tree.renderer.icons.symlink_arrow|
|
|nvim-tree.renderer.icons.symlink_arrow|
|
||||||
|nvim-tree.renderer.icons.web_devicons|
|
|nvim-tree.renderer.icons.web_devicons|
|
||||||
@@ -2942,6 +3034,7 @@ highlight group is not, hard linking as follows: >
|
|||||||
|nvim-tree-api.events.subscribe()|
|
|nvim-tree-api.events.subscribe()|
|
||||||
|nvim-tree-api.fs.clear_clipboard()|
|
|nvim-tree-api.fs.clear_clipboard()|
|
||||||
|nvim-tree-api.fs.copy.absolute_path()|
|
|nvim-tree-api.fs.copy.absolute_path()|
|
||||||
|
|nvim-tree-api.fs.copy.basename()|
|
||||||
|nvim-tree-api.fs.copy.filename()|
|
|nvim-tree-api.fs.copy.filename()|
|
||||||
|nvim-tree-api.fs.copy.node()|
|
|nvim-tree-api.fs.copy.node()|
|
||||||
|nvim-tree-api.fs.copy.relative_path()|
|
|nvim-tree-api.fs.copy.relative_path()|
|
||||||
|
|||||||
@@ -1,17 +1,11 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
local appearance = require "nvim-tree.appearance"
|
local appearance = require("nvim-tree.appearance")
|
||||||
local renderer = require "nvim-tree.renderer"
|
local view = require("nvim-tree.view")
|
||||||
local view = require "nvim-tree.view"
|
local utils = require("nvim-tree.utils")
|
||||||
local commands = require "nvim-tree.commands"
|
local actions = require("nvim-tree.actions")
|
||||||
local utils = require "nvim-tree.utils"
|
local core = require("nvim-tree.core")
|
||||||
local actions = require "nvim-tree.actions"
|
local notify = require("nvim-tree.notify")
|
||||||
local legacy = require "nvim-tree.legacy"
|
|
||||||
local core = require "nvim-tree.core"
|
|
||||||
local git = require "nvim-tree.git"
|
|
||||||
local filters = require "nvim-tree.explorer.filters"
|
|
||||||
local buffers = require "nvim-tree.buffers"
|
|
||||||
local notify = require "nvim-tree.notify"
|
|
||||||
|
|
||||||
local _config = {}
|
local _config = {}
|
||||||
|
|
||||||
@@ -27,7 +21,7 @@ function M.change_root(path, bufnr)
|
|||||||
if type(bufnr) == "number" then
|
if type(bufnr) == "number" then
|
||||||
local ft
|
local ft
|
||||||
|
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
ft = vim.api.nvim_get_option_value("filetype", { buf = bufnr }) or ""
|
ft = vim.api.nvim_get_option_value("filetype", { buf = bufnr }) or ""
|
||||||
else
|
else
|
||||||
ft = vim.api.nvim_buf_get_option(bufnr, "filetype") or "" ---@diagnostic disable-line: deprecated
|
ft = vim.api.nvim_buf_get_option(bufnr, "filetype") or "" ---@diagnostic disable-line: deprecated
|
||||||
@@ -82,11 +76,11 @@ function M.change_root(path, bufnr)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function M.tab_enter()
|
function M.tab_enter()
|
||||||
if view.is_visible { any_tabpage = true } then
|
if view.is_visible({ any_tabpage = true }) then
|
||||||
local bufname = vim.api.nvim_buf_get_name(0)
|
local bufname = vim.api.nvim_buf_get_name(0)
|
||||||
|
|
||||||
local ft
|
local ft
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
ft = vim.api.nvim_get_option_value("filetype", { buf = 0 }) or ""
|
ft = vim.api.nvim_get_option_value("filetype", { buf = 0 }) or ""
|
||||||
else
|
else
|
||||||
ft = vim.api.nvim_buf_get_option(0, "ft") ---@diagnostic disable-line: deprecated
|
ft = vim.api.nvim_buf_get_option(0, "ft") ---@diagnostic disable-line: deprecated
|
||||||
@@ -97,8 +91,12 @@ function M.tab_enter()
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
view.open { focus_tree = false }
|
view.open({ focus_tree = false })
|
||||||
renderer.draw()
|
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -147,8 +145,8 @@ end
|
|||||||
---@param hijack_netrw boolean
|
---@param hijack_netrw boolean
|
||||||
local function manage_netrw(disable_netrw, hijack_netrw)
|
local function manage_netrw(disable_netrw, hijack_netrw)
|
||||||
if hijack_netrw then
|
if hijack_netrw then
|
||||||
vim.cmd "silent! autocmd! FileExplorer *"
|
vim.cmd("silent! autocmd! FileExplorer *")
|
||||||
vim.cmd "autocmd VimEnter * ++once silent! autocmd! FileExplorer *"
|
vim.cmd("autocmd VimEnter * ++once silent! autocmd! FileExplorer *")
|
||||||
end
|
end
|
||||||
if disable_netrw then
|
if disable_netrw then
|
||||||
vim.g.loaded_netrw = 1
|
vim.g.loaded_netrw = 1
|
||||||
@@ -180,7 +178,11 @@ local function setup_autocommands(opts)
|
|||||||
callback = function()
|
callback = function()
|
||||||
appearance.setup()
|
appearance.setup()
|
||||||
view.reset_winhl()
|
view.reset_winhl()
|
||||||
renderer.draw()
|
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -202,7 +204,10 @@ local function setup_autocommands(opts)
|
|||||||
create_nvim_tree_autocmd("BufWritePost", {
|
create_nvim_tree_autocmd("BufWritePost", {
|
||||||
callback = function()
|
callback = function()
|
||||||
if opts.auto_reload_on_write and not opts.filesystem_watchers.enable then
|
if opts.auto_reload_on_write and not opts.filesystem_watchers.enable then
|
||||||
actions.reloaders.reload_explorer()
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer:reload_explorer()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@@ -210,9 +215,15 @@ local function setup_autocommands(opts)
|
|||||||
create_nvim_tree_autocmd("BufReadPost", {
|
create_nvim_tree_autocmd("BufReadPost", {
|
||||||
callback = function(data)
|
callback = function(data)
|
||||||
-- update opened file buffers
|
-- update opened file buffers
|
||||||
if (filters.config.filter_no_buffer or renderer.config.highlight_opened_files ~= "none") and vim.bo[data.buf].buftype == "" then
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if
|
||||||
|
(explorer.filters.config.filter_no_buffer or explorer.opts.highlight_opened_files ~= "none") and vim.bo[data.buf].buftype == ""
|
||||||
|
then
|
||||||
utils.debounce("Buf:filter_buffer", opts.view.debounce_delay, function()
|
utils.debounce("Buf:filter_buffer", opts.view.debounce_delay, function()
|
||||||
actions.reloaders.reload_explorer()
|
explorer:reload_explorer()
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
@@ -221,9 +232,15 @@ local function setup_autocommands(opts)
|
|||||||
create_nvim_tree_autocmd("BufUnload", {
|
create_nvim_tree_autocmd("BufUnload", {
|
||||||
callback = function(data)
|
callback = function(data)
|
||||||
-- update opened file buffers
|
-- update opened file buffers
|
||||||
if (filters.config.filter_no_buffer or renderer.config.highlight_opened_files ~= "none") and vim.bo[data.buf].buftype == "" then
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if
|
||||||
|
(explorer.filters.config.filter_no_buffer or explorer.opts.highlight_opened_files ~= "none") and vim.bo[data.buf].buftype == ""
|
||||||
|
then
|
||||||
utils.debounce("Buf:filter_buffer", opts.view.debounce_delay, function()
|
utils.debounce("Buf:filter_buffer", opts.view.debounce_delay, function()
|
||||||
actions.reloaders.reload_explorer()
|
explorer:reload_explorer()
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
@@ -233,7 +250,10 @@ local function setup_autocommands(opts)
|
|||||||
pattern = { "FugitiveChanged", "NeogitStatusRefreshed" },
|
pattern = { "FugitiveChanged", "NeogitStatusRefreshed" },
|
||||||
callback = function()
|
callback = function()
|
||||||
if not opts.filesystem_watchers.enable and opts.git.enable then
|
if not opts.filesystem_watchers.enable and opts.git.enable then
|
||||||
actions.reloaders.reload_git()
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer:reload_git()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@@ -281,7 +301,10 @@ local function setup_autocommands(opts)
|
|||||||
callback = function()
|
callback = function()
|
||||||
if utils.is_nvim_tree_buf(0) then
|
if utils.is_nvim_tree_buf(0) then
|
||||||
if vim.fn.getcwd() ~= core.get_cwd() or (opts.reload_on_bufenter and not opts.filesystem_watchers.enable) then
|
if vim.fn.getcwd() ~= core.get_cwd() or (opts.reload_on_bufenter and not opts.filesystem_watchers.enable) then
|
||||||
actions.reloaders.reload_explorer()
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer:reload_explorer()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
@@ -293,7 +316,7 @@ local function setup_autocommands(opts)
|
|||||||
callback = function()
|
callback = function()
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
vim.api.nvim_buf_call(0, function()
|
vim.api.nvim_buf_call(0, function()
|
||||||
vim.cmd [[norm! zz]]
|
vim.cmd([[norm! zz]])
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
@@ -331,8 +354,11 @@ local function setup_autocommands(opts)
|
|||||||
create_nvim_tree_autocmd({ "BufModifiedSet", "BufWritePost" }, {
|
create_nvim_tree_autocmd({ "BufModifiedSet", "BufWritePost" }, {
|
||||||
callback = function()
|
callback = function()
|
||||||
utils.debounce("Buf:modified", opts.view.debounce_delay, function()
|
utils.debounce("Buf:modified", opts.view.debounce_delay, function()
|
||||||
buffers.reload_modified()
|
require("nvim-tree.buffers").reload_modified()
|
||||||
actions.reloaders.reload_explorer()
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer:reload_explorer()
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@@ -387,11 +413,13 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
|||||||
root_folder_label = ":~:s?$?/..?",
|
root_folder_label = ":~:s?$?/..?",
|
||||||
indent_width = 2,
|
indent_width = 2,
|
||||||
special_files = { "Cargo.toml", "Makefile", "README.md", "readme.md" },
|
special_files = { "Cargo.toml", "Makefile", "README.md", "readme.md" },
|
||||||
|
hidden_display = "none",
|
||||||
symlink_destination = true,
|
symlink_destination = true,
|
||||||
highlight_git = "none",
|
highlight_git = "none",
|
||||||
highlight_diagnostics = "none",
|
highlight_diagnostics = "none",
|
||||||
highlight_opened_files = "none",
|
highlight_opened_files = "none",
|
||||||
highlight_modified = "none",
|
highlight_modified = "none",
|
||||||
|
highlight_hidden = "none",
|
||||||
highlight_bookmarks = "none",
|
highlight_bookmarks = "none",
|
||||||
highlight_clipboard = "name",
|
highlight_clipboard = "name",
|
||||||
indent_markers = {
|
indent_markers = {
|
||||||
@@ -418,6 +446,7 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
|||||||
},
|
},
|
||||||
git_placement = "before",
|
git_placement = "before",
|
||||||
modified_placement = "after",
|
modified_placement = "after",
|
||||||
|
hidden_placement = "after",
|
||||||
diagnostics_placement = "signcolumn",
|
diagnostics_placement = "signcolumn",
|
||||||
bookmarks_placement = "signcolumn",
|
bookmarks_placement = "signcolumn",
|
||||||
padding = " ",
|
padding = " ",
|
||||||
@@ -428,6 +457,7 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
|||||||
folder_arrow = true,
|
folder_arrow = true,
|
||||||
git = true,
|
git = true,
|
||||||
modified = true,
|
modified = true,
|
||||||
|
hidden = false,
|
||||||
diagnostics = true,
|
diagnostics = true,
|
||||||
bookmarks = true,
|
bookmarks = true,
|
||||||
},
|
},
|
||||||
@@ -436,6 +466,7 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
|||||||
symlink = "",
|
symlink = "",
|
||||||
bookmark = "",
|
bookmark = "",
|
||||||
modified = "●",
|
modified = "●",
|
||||||
|
hidden = "",
|
||||||
folder = {
|
folder = {
|
||||||
arrow_closed = "",
|
arrow_closed = "",
|
||||||
arrow_open = "",
|
arrow_open = "",
|
||||||
@@ -632,6 +663,7 @@ local ACCEPTED_TYPES = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
renderer = {
|
renderer = {
|
||||||
|
hidden_display = { "function", "string" },
|
||||||
group_empty = { "boolean", "function" },
|
group_empty = { "boolean", "function" },
|
||||||
root_folder_label = { "function", "string", "boolean" },
|
root_folder_label = { "function", "string", "boolean" },
|
||||||
},
|
},
|
||||||
@@ -665,17 +697,20 @@ local ACCEPTED_STRINGS = {
|
|||||||
signcolumn = { "yes", "no", "auto" },
|
signcolumn = { "yes", "no", "auto" },
|
||||||
},
|
},
|
||||||
renderer = {
|
renderer = {
|
||||||
|
hidden_display = { "none", "simple", "all" },
|
||||||
highlight_git = { "none", "icon", "name", "all" },
|
highlight_git = { "none", "icon", "name", "all" },
|
||||||
highlight_opened_files = { "none", "icon", "name", "all" },
|
highlight_opened_files = { "none", "icon", "name", "all" },
|
||||||
highlight_modified = { "none", "icon", "name", "all" },
|
highlight_modified = { "none", "icon", "name", "all" },
|
||||||
|
highlight_hidden = { "none", "icon", "name", "all" },
|
||||||
highlight_bookmarks = { "none", "icon", "name", "all" },
|
highlight_bookmarks = { "none", "icon", "name", "all" },
|
||||||
highlight_diagnostics = { "none", "icon", "name", "all" },
|
highlight_diagnostics = { "none", "icon", "name", "all" },
|
||||||
highlight_clipboard = { "none", "icon", "name", "all" },
|
highlight_clipboard = { "none", "icon", "name", "all" },
|
||||||
icons = {
|
icons = {
|
||||||
git_placement = { "before", "after", "signcolumn" },
|
git_placement = { "before", "after", "signcolumn", "right_align" },
|
||||||
modified_placement = { "before", "after", "signcolumn" },
|
modified_placement = { "before", "after", "signcolumn", "right_align" },
|
||||||
diagnostics_placement = { "before", "after", "signcolumn" },
|
hidden_placement = { "before", "after", "signcolumn", "right_align" },
|
||||||
bookmarks_placement = { "before", "after", "signcolumn" },
|
diagnostics_placement = { "before", "after", "signcolumn", "right_align" },
|
||||||
|
bookmarks_placement = { "before", "after", "signcolumn", "right_align" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
help = {
|
help = {
|
||||||
@@ -769,15 +804,15 @@ function M.purge_all_state()
|
|||||||
view.close_all_tabs()
|
view.close_all_tabs()
|
||||||
view.abandon_all_windows()
|
view.abandon_all_windows()
|
||||||
if core.get_explorer() ~= nil then
|
if core.get_explorer() ~= nil then
|
||||||
git.purge_state()
|
require("nvim-tree.git").purge_state()
|
||||||
core.reset_explorer()
|
core.reset_explorer()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param conf table|nil
|
---@param conf table|nil
|
||||||
function M.setup(conf)
|
function M.setup(conf)
|
||||||
if vim.fn.has "nvim-0.9" == 0 then
|
if vim.fn.has("nvim-0.9") == 0 then
|
||||||
notify.warn "nvim-tree.lua requires Neovim 0.9 or higher"
|
notify.warn("nvim-tree.lua requires Neovim 0.9 or higher")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -785,7 +820,7 @@ function M.setup(conf)
|
|||||||
|
|
||||||
localise_default_opts()
|
localise_default_opts()
|
||||||
|
|
||||||
legacy.migrate_legacy_options(conf or {})
|
require("nvim-tree.legacy").migrate_legacy_options(conf or {})
|
||||||
|
|
||||||
validate_options(conf)
|
validate_options(conf)
|
||||||
|
|
||||||
@@ -805,7 +840,7 @@ function M.setup(conf)
|
|||||||
require("nvim-tree.notify").setup(opts)
|
require("nvim-tree.notify").setup(opts)
|
||||||
require("nvim-tree.log").setup(opts)
|
require("nvim-tree.log").setup(opts)
|
||||||
|
|
||||||
if log.enabled "config" then
|
if log.enabled("config") then
|
||||||
log.line("config", "default config + user")
|
log.line("config", "default config + user")
|
||||||
log.raw("config", "%s\n", vim.inspect(opts))
|
log.raw("config", "%s\n", vim.inspect(opts))
|
||||||
end
|
end
|
||||||
@@ -819,9 +854,7 @@ function M.setup(conf)
|
|||||||
require("nvim-tree.git.utils").setup(opts)
|
require("nvim-tree.git.utils").setup(opts)
|
||||||
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.components").setup(opts)
|
||||||
require("nvim-tree.live-filter").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)
|
||||||
@@ -833,7 +866,7 @@ function M.setup(conf)
|
|||||||
|
|
||||||
if vim.g.NvimTreeSetup ~= 1 then
|
if vim.g.NvimTreeSetup ~= 1 then
|
||||||
-- first call to setup
|
-- first call to setup
|
||||||
commands.setup()
|
require("nvim-tree.commands").setup()
|
||||||
else
|
else
|
||||||
-- subsequent calls to setup
|
-- subsequent calls to setup
|
||||||
M.purge_all_state()
|
M.purge_all_state()
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
local log = require "nvim-tree.log"
|
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 core = require("nvim-tree.core")
|
||||||
local reload = require "nvim-tree.explorer.reload"
|
local Iterator = require("nvim-tree.iterators.node-iterator")
|
||||||
local core = require "nvim-tree.core"
|
|
||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -13,7 +11,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 +31,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()
|
||||||
@@ -76,8 +75,8 @@ function M.fn(path)
|
|||||||
:iterate()
|
:iterate()
|
||||||
|
|
||||||
if found and view.is_visible() then
|
if found and view.is_visible() then
|
||||||
renderer.draw()
|
explorer.renderer:draw()
|
||||||
view.set_cursor { line, 0 }
|
view.set_cursor({ line, 0 })
|
||||||
end
|
end
|
||||||
|
|
||||||
running[path_real] = false
|
running[path_real] = false
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.find_file = require "nvim-tree.actions.finders.find-file"
|
M.find_file = require("nvim-tree.actions.finders.find-file")
|
||||||
M.search_node = require "nvim-tree.actions.finders.search-node"
|
M.search_node = require("nvim-tree.actions.finders.search-node")
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
local filters = require "nvim-tree.explorer.filters"
|
|
||||||
local find_file = require("nvim-tree.actions.finders.find-file").fn
|
local find_file = require("nvim-tree.actions.finders.find-file").fn
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
@@ -9,6 +8,11 @@ local M = {}
|
|||||||
---@return string|nil
|
---@return string|nil
|
||||||
local function search(search_dir, input_path)
|
local function search(search_dir, input_path)
|
||||||
local realpaths_searched = {}
|
local realpaths_searched = {}
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
if not search_dir then
|
if not search_dir then
|
||||||
return
|
return
|
||||||
@@ -19,7 +23,7 @@ local function search(search_dir, input_path)
|
|||||||
local function iter(dir)
|
local function iter(dir)
|
||||||
local realpath, path, name, stat, handle, _
|
local realpath, path, name, stat, handle, _
|
||||||
|
|
||||||
local filter_status = filters.prepare()
|
local filter_status = explorer.filters:prepare()
|
||||||
|
|
||||||
handle, _ = vim.loop.fs_scandir(dir)
|
handle, _ = vim.loop.fs_scandir(dir)
|
||||||
if not handle then
|
if not handle then
|
||||||
@@ -42,7 +46,7 @@ local function search(search_dir, input_path)
|
|||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
if not filters.should_filter(path, stat, filter_status) then
|
if not explorer.filters:should_filter(path, stat, filter_status) then
|
||||||
if string.find(path, "/" .. input_path .. "$") then
|
if string.find(path, "/" .. input_path .. "$") then
|
||||||
return path
|
return path
|
||||||
end
|
end
|
||||||
@@ -71,7 +75,7 @@ function M.fn()
|
|||||||
local bufnr = vim.api.nvim_get_current_buf()
|
local bufnr = vim.api.nvim_get_current_buf()
|
||||||
|
|
||||||
local path_existed, path_opt
|
local path_existed, path_opt
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
path_existed, path_opt = pcall(vim.api.nvim_get_option_value, "path", { buf = bufnr })
|
path_existed, path_opt = pcall(vim.api.nvim_get_option_value, "path", { buf = bufnr })
|
||||||
vim.api.nvim_set_option_value("path", core.get_cwd() .. "/**", { buf = bufnr })
|
vim.api.nvim_set_option_value("path", core.get_cwd() .. "/**", { buf = bufnr })
|
||||||
else
|
else
|
||||||
@@ -85,13 +89,13 @@ function M.fn()
|
|||||||
end
|
end
|
||||||
-- reset &path
|
-- reset &path
|
||||||
if path_existed then
|
if path_existed then
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("path", path_opt, { buf = bufnr })
|
vim.api.nvim_set_option_value("path", path_opt, { buf = bufnr })
|
||||||
else
|
else
|
||||||
vim.api.nvim_buf_set_option(bufnr, "path", path_opt) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_buf_set_option(bufnr, "path", path_opt) ---@diagnostic disable-line: deprecated
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("path", nil, { buf = bufnr })
|
vim.api.nvim_set_option_value("path", nil, { buf = bufnr })
|
||||||
else
|
else
|
||||||
vim.api.nvim_buf_set_option(bufnr, "path", nil) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_buf_set_option(bufnr, "path", nil) ---@diagnostic disable-line: deprecated
|
||||||
|
|||||||
@@ -1,22 +1,44 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
local events = require "nvim-tree.events"
|
local events = require("nvim-tree.events")
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
local renderer = require "nvim-tree.renderer"
|
|
||||||
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
|
||||||
@@ -67,8 +89,8 @@ local function do_copy(source, destination)
|
|||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
local new_name = utils.path_join { source, name }
|
local new_name = utils.path_join({ source, name })
|
||||||
local new_destination = utils.path_join { destination, name }
|
local new_destination = utils.path_join({ destination, name })
|
||||||
success, errmsg = do_copy(new_name, new_destination)
|
success, errmsg = do_copy(new_name, new_destination)
|
||||||
if not success then
|
if not success then
|
||||||
return false, errmsg
|
return false, errmsg
|
||||||
@@ -85,11 +107,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 +120,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 +145,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 +159,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 +187,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] = {}
|
||||||
notify.info "Clipboard has been emptied."
|
self.data[ACTION.cut] = {}
|
||||||
renderer.draw()
|
notify.info("Clipboard has been emptied.")
|
||||||
|
self.explorer.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()
|
self.explorer.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()
|
self.explorer.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 +231,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"
|
||||||
@@ -213,13 +240,13 @@ local function do_paste(node, action_type, action_fn)
|
|||||||
end
|
end
|
||||||
|
|
||||||
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()
|
self.explorer:reload_explorer()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -246,26 +273,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 +302,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 +326,44 @@ 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)
|
local content
|
||||||
|
|
||||||
|
if node.name == ".." then
|
||||||
|
-- root
|
||||||
|
content = vim.fn.fnamemodify(self.explorer.absolute_path, ":t")
|
||||||
|
else
|
||||||
|
-- node
|
||||||
|
content = node.name
|
||||||
|
end
|
||||||
|
|
||||||
|
self:copy_to_reg(content)
|
||||||
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 content
|
||||||
copy_to_clipboard(basename)
|
|
||||||
|
if node.name == ".." then
|
||||||
|
-- root
|
||||||
|
content = vim.fn.fnamemodify(self.explorer.absolute_path, ":t:r")
|
||||||
|
else
|
||||||
|
-- node
|
||||||
|
content = vim.fn.fnamemodify(node.name, ":r")
|
||||||
|
end
|
||||||
|
|
||||||
|
self:copy_to_reg(content)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.copy_path(node)
|
function Clipboard:copy_path(node)
|
||||||
|
local content
|
||||||
|
|
||||||
|
if node.name == ".." then
|
||||||
|
-- root
|
||||||
|
content = utils.path_add_trailing("")
|
||||||
|
else
|
||||||
|
-- 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
|
||||||
@@ -317,34 +371,35 @@ function M.copy_path(node)
|
|||||||
end
|
end
|
||||||
|
|
||||||
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
|
content = node.nodes ~= nil and utils.path_add_trailing(relative_path) or relative_path
|
||||||
copy_to_clipboard(content)
|
end
|
||||||
|
|
||||||
|
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)
|
||||||
|
if node.name == ".." then
|
||||||
|
node = self.explorer
|
||||||
|
end
|
||||||
|
|
||||||
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,8 +1,8 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local events = require "nvim-tree.events"
|
local events = require("nvim-tree.events")
|
||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
local find_file = require("nvim-tree.actions.finders.find-file").fn
|
local find_file = require("nvim-tree.actions.finders.find-file").fn
|
||||||
|
|
||||||
@@ -72,7 +72,7 @@ function M.fn(node)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if utils.file_exists(new_file_path) then
|
if utils.file_exists(new_file_path) then
|
||||||
notify.warn "Cannot create: file already exists"
|
notify.warn("Cannot create: file already exists")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -87,10 +87,10 @@ function M.fn(node)
|
|||||||
for path in utils.path_split(new_file_path) do
|
for path in utils.path_split(new_file_path) do
|
||||||
idx = idx + 1
|
idx = idx + 1
|
||||||
local p = utils.path_remove_trailing(path)
|
local p = utils.path_remove_trailing(path)
|
||||||
if #path_to_create == 0 and vim.fn.has "win32" == 1 then
|
if #path_to_create == 0 and vim.fn.has("win32") == 1 then
|
||||||
path_to_create = utils.path_join { p, path_to_create }
|
path_to_create = utils.path_join({ p, path_to_create })
|
||||||
else
|
else
|
||||||
path_to_create = utils.path_join { path_to_create, p }
|
path_to_create = utils.path_join({ path_to_create, p })
|
||||||
end
|
end
|
||||||
if is_last_path_file and idx == num_nodes then
|
if is_last_path_file and idx == num_nodes then
|
||||||
create_and_notify(path_to_create)
|
create_and_notify(path_to_create)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local core = require("nvim-tree.core")
|
||||||
local events = require "nvim-tree.events"
|
local utils = require("nvim-tree.utils")
|
||||||
local view = require "nvim-tree.view"
|
local events = require("nvim-tree.events")
|
||||||
local lib = require "nvim-tree.lib"
|
local view = require("nvim-tree.view")
|
||||||
local notify = require "nvim-tree.notify"
|
local lib = require("nvim-tree.lib")
|
||||||
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
config = {},
|
config = {},
|
||||||
@@ -26,13 +27,13 @@ end
|
|||||||
|
|
||||||
---@param absolute_path string
|
---@param absolute_path string
|
||||||
local function clear_buffer(absolute_path)
|
local function clear_buffer(absolute_path)
|
||||||
local bufs = vim.fn.getbufinfo { bufloaded = 1, buflisted = 1 }
|
local bufs = vim.fn.getbufinfo({ bufloaded = 1, buflisted = 1 })
|
||||||
for _, buf in pairs(bufs) do
|
for _, buf in pairs(bufs) do
|
||||||
if buf.name == absolute_path then
|
if buf.name == absolute_path then
|
||||||
local tree_winnr = vim.api.nvim_get_current_win()
|
local tree_winnr = vim.api.nvim_get_current_win()
|
||||||
if buf.hidden == 0 and (#bufs > 1 or view.View.float.enable) then
|
if buf.hidden == 0 and (#bufs > 1 or view.View.float.enable) then
|
||||||
vim.api.nvim_set_current_win(buf.windows[1])
|
vim.api.nvim_set_current_win(buf.windows[1])
|
||||||
vim.cmd ":bn"
|
vim.cmd(":bn")
|
||||||
end
|
end
|
||||||
vim.api.nvim_buf_delete(buf.bufnr, { force = true })
|
vim.api.nvim_buf_delete(buf.bufnr, { force = true })
|
||||||
if not view.View.float.quit_on_focus_loss then
|
if not view.View.float.quit_on_focus_loss then
|
||||||
@@ -56,13 +57,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
|
||||||
@@ -111,8 +117,9 @@ function M.fn(node)
|
|||||||
|
|
||||||
local function do_remove()
|
local function do_remove()
|
||||||
M.remove(node)
|
M.remove(node)
|
||||||
if not M.config.filesystem_watchers.enable then
|
local explorer = core.get_explorer()
|
||||||
require("nvim-tree.actions.reloaders").reload_explorer()
|
if not M.config.filesystem_watchers.enable and explorer then
|
||||||
|
explorer:reload_explorer()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local core = require("nvim-tree.core")
|
||||||
local utils = require "nvim-tree.utils"
|
local lib = require("nvim-tree.lib")
|
||||||
local events = require "nvim-tree.events"
|
local utils = require("nvim-tree.utils")
|
||||||
local notify = require "nvim-tree.notify"
|
local events = require("nvim-tree.events")
|
||||||
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
local find_file = require("nvim-tree.actions.finders.find-file").fn
|
local find_file = require("nvim-tree.actions.finders.find-file").fn
|
||||||
|
|
||||||
@@ -63,10 +64,10 @@ function M.rename(node, to)
|
|||||||
idx = idx + 1
|
idx = idx + 1
|
||||||
|
|
||||||
local p = utils.path_remove_trailing(path)
|
local p = utils.path_remove_trailing(path)
|
||||||
if #path_to_create == 0 and vim.fn.has "win32" == 1 then
|
if #path_to_create == 0 and vim.fn.has("win32") == 1 then
|
||||||
path_to_create = utils.path_join { p, path_to_create }
|
path_to_create = utils.path_join({ p, path_to_create })
|
||||||
else
|
else
|
||||||
path_to_create = utils.path_join { path_to_create, p }
|
path_to_create = utils.path_join({ path_to_create, p })
|
||||||
end
|
end
|
||||||
|
|
||||||
if idx == num_nodes then
|
if idx == num_nodes then
|
||||||
@@ -155,7 +156,10 @@ function M.fn(default_modifier)
|
|||||||
|
|
||||||
M.rename(node, prepend .. new_file_path .. append)
|
M.rename(node, prepend .. new_file_path .. append)
|
||||||
if not M.config.filesystem_watchers.enable then
|
if not M.config.filesystem_watchers.enable then
|
||||||
require("nvim-tree.actions.reloaders").reload_explorer()
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer:reload_explorer()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
find_file(utils.path_remove_trailing(new_file_path))
|
find_file(utils.path_remove_trailing(new_file_path))
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local core = require("nvim-tree.core")
|
||||||
local notify = require "nvim-tree.notify"
|
local lib = require("nvim-tree.lib")
|
||||||
local reloaders = require "nvim-tree.actions.reloaders"
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
config = {},
|
config = {},
|
||||||
}
|
}
|
||||||
|
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local events = require "nvim-tree.events"
|
local events = require("nvim-tree.events")
|
||||||
|
|
||||||
---@param absolute_path string
|
---@param absolute_path string
|
||||||
local function clear_buffer(absolute_path)
|
local function clear_buffer(absolute_path)
|
||||||
local bufs = vim.fn.getbufinfo { bufloaded = 1, buflisted = 1 }
|
local bufs = vim.fn.getbufinfo({ bufloaded = 1, buflisted = 1 })
|
||||||
for _, buf in pairs(bufs) do
|
for _, buf in pairs(bufs) do
|
||||||
if buf.name == absolute_path then
|
if buf.name == absolute_path then
|
||||||
if buf.hidden == 0 and #bufs > 1 then
|
if buf.hidden == 0 and #bufs > 1 then
|
||||||
local winnr = vim.api.nvim_get_current_win()
|
local winnr = vim.api.nvim_get_current_win()
|
||||||
vim.api.nvim_set_current_win(buf.windows[1])
|
vim.api.nvim_set_current_win(buf.windows[1])
|
||||||
vim.cmd ":bn"
|
vim.cmd(":bn")
|
||||||
vim.api.nvim_set_current_win(winnr)
|
vim.api.nvim_set_current_win(winnr)
|
||||||
end
|
end
|
||||||
vim.api.nvim_buf_delete(buf.bufnr, {})
|
vim.api.nvim_buf_delete(buf.bufnr, {})
|
||||||
@@ -48,10 +48,12 @@ function M.remove(node)
|
|||||||
on_stderr = on_stderr,
|
on_stderr = on_stderr,
|
||||||
})
|
})
|
||||||
if need_sync_wait then
|
if need_sync_wait then
|
||||||
vim.fn.jobwait { job }
|
vim.fn.jobwait({ job })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
|
||||||
if node.nodes ~= nil and not node.link_to then
|
if node.nodes ~= nil and not node.link_to then
|
||||||
trash_path(function(_, rc)
|
trash_path(function(_, rc)
|
||||||
if rc ~= 0 then
|
if rc ~= 0 then
|
||||||
@@ -59,8 +61,8 @@ function M.remove(node)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
events._dispatch_folder_removed(node.absolute_path)
|
events._dispatch_folder_removed(node.absolute_path)
|
||||||
if not M.config.filesystem_watchers.enable then
|
if not M.config.filesystem_watchers.enable and explorer then
|
||||||
reloaders.reload_explorer()
|
explorer:reload_explorer()
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
else
|
else
|
||||||
@@ -72,8 +74,8 @@ function M.remove(node)
|
|||||||
end
|
end
|
||||||
events._dispatch_file_removed(node.absolute_path)
|
events._dispatch_file_removed(node.absolute_path)
|
||||||
clear_buffer(node.absolute_path)
|
clear_buffer(node.absolute_path)
|
||||||
if not M.config.filesystem_watchers.enable then
|
if not M.config.filesystem_watchers.enable and explorer then
|
||||||
reloaders.reload_explorer()
|
explorer:reload_explorer()
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.finders = require "nvim-tree.actions.finders"
|
M.finders = require("nvim-tree.actions.finders")
|
||||||
M.fs = require "nvim-tree.actions.fs"
|
M.fs = require("nvim-tree.actions.fs")
|
||||||
M.moves = require "nvim-tree.actions.moves"
|
M.moves = require("nvim-tree.actions.moves")
|
||||||
M.node = require "nvim-tree.actions.node"
|
M.node = require("nvim-tree.actions.node")
|
||||||
M.reloaders = require "nvim-tree.actions.reloaders"
|
M.root = require("nvim-tree.actions.root")
|
||||||
M.root = require "nvim-tree.actions.root"
|
M.tree = require("nvim-tree.actions.tree")
|
||||||
M.tree = require "nvim-tree.actions.tree"
|
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.fs.setup(opts)
|
M.fs.setup(opts)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.item = require "nvim-tree.actions.moves.item"
|
M.item = require("nvim-tree.actions.moves.item")
|
||||||
M.parent = require "nvim-tree.actions.moves.parent"
|
M.parent = require("nvim-tree.actions.moves.parent")
|
||||||
M.sibling = require "nvim-tree.actions.moves.sibling"
|
M.sibling = require("nvim-tree.actions.moves.sibling")
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local view = require "nvim-tree.view"
|
local view = require("nvim-tree.view")
|
||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
local explorer_node = require("nvim-tree.explorer.node")
|
||||||
local diagnostics = require "nvim-tree.diagnostics"
|
local diagnostics = require("nvim-tree.diagnostics")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
local MAX_DEPTH = 100
|
local MAX_DEPTH = 100
|
||||||
@@ -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
|
||||||
@@ -61,9 +65,9 @@ local function move(where, what, skip_gitignored)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if nex then
|
if nex then
|
||||||
view.set_cursor { nex, 0 }
|
view.set_cursor({ nex, 0 })
|
||||||
elseif vim.o.wrapscan and first then
|
elseif vim.o.wrapscan and first then
|
||||||
view.set_cursor { first, 0 }
|
view.set_cursor({ first, 0 })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -182,13 +186,13 @@ local function move_prev_recursive(what, skip_gitignored)
|
|||||||
|
|
||||||
-- 4.3)
|
-- 4.3)
|
||||||
if node_init.name == ".." then -- root node
|
if node_init.name == ".." then -- root node
|
||||||
view.set_cursor { 1, 0 } -- move to root node (position 1)
|
view.set_cursor({ 1, 0 }) -- move to root node (position 1)
|
||||||
else
|
else
|
||||||
local node_init_line = utils.find_node_line(node_init)
|
local node_init_line = utils.find_node_line(node_init)
|
||||||
if node_init_line < 0 then
|
if node_init_line < 0 then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
view.set_cursor { node_init_line, 0 }
|
view.set_cursor({ node_init_line, 0 })
|
||||||
end
|
end
|
||||||
|
|
||||||
-- 4.4)
|
-- 4.4)
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
local renderer = require "nvim-tree.renderer"
|
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 core = require("nvim-tree.core")
|
||||||
local core = require "nvim-tree.core"
|
local lib = require("nvim-tree.lib")
|
||||||
local lib = require "nvim-tree.lib"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -12,26 +11,32 @@ function M.fn(should_close)
|
|||||||
should_close = should_close or false
|
should_close = should_close or false
|
||||||
|
|
||||||
return function(node)
|
return function(node)
|
||||||
|
local explorer = core.get_explorer()
|
||||||
node = lib.get_last_group_node(node)
|
node = lib.get_last_group_node(node)
|
||||||
if should_close and node.open then
|
if should_close and node.open then
|
||||||
node.open = false
|
node.open = false
|
||||||
return renderer.draw()
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local parent = utils.get_parent_of_group(node).parent
|
local parent = utils.get_parent_of_group(node).parent
|
||||||
|
|
||||||
if not parent or not parent.parent then
|
if not parent or not parent.parent then
|
||||||
return view.set_cursor { 1, 0 }
|
return view.set_cursor({ 1, 0 })
|
||||||
end
|
end
|
||||||
|
|
||||||
local _, line = utils.find_node(core.get_explorer().nodes, function(n)
|
local _, line = utils.find_node(core.get_explorer().nodes, function(n)
|
||||||
return n.absolute_path == parent.absolute_path
|
return n.absolute_path == parent.absolute_path
|
||||||
end)
|
end)
|
||||||
|
|
||||||
view.set_cursor { line + 1, 0 }
|
view.set_cursor({ line + 1, 0 })
|
||||||
if should_close then
|
if should_close then
|
||||||
parent.open = false
|
parent.open = false
|
||||||
renderer.draw()
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
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")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -57,7 +57,7 @@ end
|
|||||||
function M.close_popup()
|
function M.close_popup()
|
||||||
if current_popup ~= nil then
|
if current_popup ~= nil then
|
||||||
vim.api.nvim_win_close(current_popup.winnr, true)
|
vim.api.nvim_win_close(current_popup.winnr, true)
|
||||||
vim.cmd "augroup NvimTreeRemoveFilePopup | au! CursorMoved | augroup END"
|
vim.cmd("augroup NvimTreeRemoveFilePopup | au! CursorMoved | augroup END")
|
||||||
|
|
||||||
current_popup = nil
|
current_popup = nil
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.file_popup = require "nvim-tree.actions.node.file-popup"
|
M.file_popup = require("nvim-tree.actions.node.file-popup")
|
||||||
M.open_file = require "nvim-tree.actions.node.open-file"
|
M.open_file = require("nvim-tree.actions.node.open-file")
|
||||||
M.run_command = require "nvim-tree.actions.node.run-command"
|
M.run_command = require("nvim-tree.actions.node.run-command")
|
||||||
M.system_open = require "nvim-tree.actions.node.system-open"
|
M.system_open = require("nvim-tree.actions.node.system-open")
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
require("nvim-tree.actions.node.system-open").setup(opts)
|
require("nvim-tree.actions.node.system-open").setup(opts)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
-- Copyright 2019 Yazdani Kiyan under MIT License
|
-- Copyright 2019 Yazdani Kiyan under MIT License
|
||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local view = require "nvim-tree.view"
|
local view = require("nvim-tree.view")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ local function usable_win_ids()
|
|||||||
local bufid = vim.api.nvim_win_get_buf(id)
|
local bufid = vim.api.nvim_win_get_buf(id)
|
||||||
for option, v in pairs(M.window_picker.exclude) do
|
for option, v in pairs(M.window_picker.exclude) do
|
||||||
local ok, option_value
|
local ok, option_value
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
ok, option_value = pcall(vim.api.nvim_get_option_value, option, { buf = bufid })
|
ok, option_value = pcall(vim.api.nvim_get_option_value, option, { buf = bufid })
|
||||||
else
|
else
|
||||||
ok, option_value = pcall(vim.api.nvim_buf_get_option, bufid, option) ---@diagnostic disable-line: deprecated
|
ok, option_value = pcall(vim.api.nvim_buf_get_option, bufid, option) ---@diagnostic disable-line: deprecated
|
||||||
@@ -91,7 +91,7 @@ local function pick_win_id()
|
|||||||
for _, win_id in ipairs(not_selectable) do
|
for _, win_id in ipairs(not_selectable) do
|
||||||
local ok_status, statusline, ok_hl, winhl
|
local ok_status, statusline, ok_hl, winhl
|
||||||
|
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
ok_status, statusline = pcall(vim.api.nvim_get_option_value, "statusline", { win = win_id })
|
ok_status, statusline = pcall(vim.api.nvim_get_option_value, "statusline", { win = win_id })
|
||||||
ok_hl, winhl = pcall(vim.api.nvim_get_option_value, "winhl", { win = win_id })
|
ok_hl, winhl = pcall(vim.api.nvim_get_option_value, "winhl", { win = win_id })
|
||||||
else
|
else
|
||||||
@@ -105,7 +105,7 @@ local function pick_win_id()
|
|||||||
}
|
}
|
||||||
|
|
||||||
-- Clear statusline for windows not selectable
|
-- Clear statusline for windows not selectable
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("statusline", " ", { win = win_id })
|
vim.api.nvim_set_option_value("statusline", " ", { win = win_id })
|
||||||
else
|
else
|
||||||
vim.api.nvim_win_set_option(win_id, "statusline", " ") ---@diagnostic disable-line: deprecated
|
vim.api.nvim_win_set_option(win_id, "statusline", " ") ---@diagnostic disable-line: deprecated
|
||||||
@@ -118,7 +118,7 @@ local function pick_win_id()
|
|||||||
local char = M.window_picker.chars:sub(i, i)
|
local char = M.window_picker.chars:sub(i, i)
|
||||||
|
|
||||||
local ok_status, statusline, ok_hl, winhl
|
local ok_status, statusline, ok_hl, winhl
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
ok_status, statusline = pcall(vim.api.nvim_get_option_value, "statusline", { win = id })
|
ok_status, statusline = pcall(vim.api.nvim_get_option_value, "statusline", { win = id })
|
||||||
ok_hl, winhl = pcall(vim.api.nvim_get_option_value, "winhl", { win = id })
|
ok_hl, winhl = pcall(vim.api.nvim_get_option_value, "winhl", { win = id })
|
||||||
else
|
else
|
||||||
@@ -132,7 +132,7 @@ local function pick_win_id()
|
|||||||
}
|
}
|
||||||
win_map[char] = id
|
win_map[char] = id
|
||||||
|
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("statusline", "%=" .. char .. "%=", { win = id })
|
vim.api.nvim_set_option_value("statusline", "%=" .. char .. "%=", { win = id })
|
||||||
vim.api.nvim_set_option_value("winhl", "StatusLine:NvimTreeWindowPicker,StatusLineNC:NvimTreeWindowPicker", { win = id })
|
vim.api.nvim_set_option_value("winhl", "StatusLine:NvimTreeWindowPicker,StatusLineNC:NvimTreeWindowPicker", { win = id })
|
||||||
else
|
else
|
||||||
@@ -146,9 +146,9 @@ local function pick_win_id()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
vim.cmd "redraw"
|
vim.cmd("redraw")
|
||||||
if vim.opt.cmdheight._value ~= 0 then
|
if vim.opt.cmdheight._value ~= 0 then
|
||||||
print "Pick window: "
|
print("Pick window: ")
|
||||||
end
|
end
|
||||||
local _, resp = pcall(get_user_input_char)
|
local _, resp = pcall(get_user_input_char)
|
||||||
resp = (resp or ""):upper()
|
resp = (resp or ""):upper()
|
||||||
@@ -157,7 +157,7 @@ local function pick_win_id()
|
|||||||
-- Restore window options
|
-- Restore window options
|
||||||
for _, id in ipairs(selectable) do
|
for _, id in ipairs(selectable) do
|
||||||
for opt, value in pairs(win_opts[id]) do
|
for opt, value in pairs(win_opts[id]) do
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value(opt, value, { win = id })
|
vim.api.nvim_set_option_value(opt, value, { win = id })
|
||||||
else
|
else
|
||||||
vim.api.nvim_win_set_option(id, opt, value) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_win_set_option(id, opt, value) ---@diagnostic disable-line: deprecated
|
||||||
@@ -167,8 +167,10 @@ local function pick_win_id()
|
|||||||
|
|
||||||
if laststatus == 3 then
|
if laststatus == 3 then
|
||||||
for _, id in ipairs(not_selectable) do
|
for _, id in ipairs(not_selectable) do
|
||||||
|
-- Ensure window still exists at this point
|
||||||
|
if vim.api.nvim_win_is_valid(id) then
|
||||||
for opt, value in pairs(win_opts[id]) do
|
for opt, value in pairs(win_opts[id]) do
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value(opt, value, { win = id })
|
vim.api.nvim_set_option_value(opt, value, { win = id })
|
||||||
else
|
else
|
||||||
vim.api.nvim_win_set_option(id, opt, value) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_win_set_option(id, opt, value) ---@diagnostic disable-line: deprecated
|
||||||
@@ -176,6 +178,7 @@ local function pick_win_id()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
vim.o.laststatus = laststatus
|
vim.o.laststatus = laststatus
|
||||||
|
|
||||||
@@ -297,7 +300,7 @@ local function open_in_new_window(filename, mode)
|
|||||||
|
|
||||||
-- No need to split, as we created a new window.
|
-- No need to split, as we created a new window.
|
||||||
create_new_window = false
|
create_new_window = false
|
||||||
if mode:match "split$" then
|
if mode:match("split$") then
|
||||||
mode = "edit"
|
mode = "edit"
|
||||||
end
|
end
|
||||||
elseif not vim.o.hidden then
|
elseif not vim.o.hidden then
|
||||||
@@ -306,14 +309,14 @@ local function open_in_new_window(filename, mode)
|
|||||||
local target_bufid = vim.api.nvim_win_get_buf(target_winid)
|
local target_bufid = vim.api.nvim_win_get_buf(target_winid)
|
||||||
|
|
||||||
local modified
|
local modified
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
modified = vim.api.nvim_get_option_value("modified", { buf = target_bufid })
|
modified = vim.api.nvim_get_option_value("modified", { buf = target_bufid })
|
||||||
else
|
else
|
||||||
modified = vim.api.nvim_buf_get_option(target_bufid, "modified") ---@diagnostic disable-line: deprecated
|
modified = vim.api.nvim_buf_get_option(target_bufid, "modified") ---@diagnostic disable-line: deprecated
|
||||||
end
|
end
|
||||||
|
|
||||||
if modified then
|
if modified then
|
||||||
if not mode:match "split$" then
|
if not mode:match("split$") then
|
||||||
mode = "vsplit"
|
mode = "vsplit"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -330,16 +333,16 @@ local function open_in_new_window(filename, mode)
|
|||||||
|
|
||||||
local fname
|
local fname
|
||||||
if M.relative_path then
|
if M.relative_path then
|
||||||
fname = utils.escape_special_chars(vim.fn.fnameescape(utils.path_relative(filename, vim.fn.getcwd())))
|
fname = vim.fn.fnameescape(utils.path_relative(filename, vim.fn.getcwd()))
|
||||||
else
|
else
|
||||||
fname = utils.escape_special_chars(vim.fn.fnameescape(filename))
|
fname = vim.fn.fnameescape(filename)
|
||||||
end
|
end
|
||||||
|
|
||||||
local command
|
local command
|
||||||
if create_new_window then
|
if create_new_window then
|
||||||
-- generated from vim.api.nvim_parse_cmd("belowright vsplit foo", {})
|
-- generated from vim.api.nvim_parse_cmd("belowright vsplit foo", {})
|
||||||
command = { cmd = "vsplit", mods = { split = new_window_side }, args = { fname } }
|
command = { cmd = "vsplit", mods = { split = new_window_side }, args = { fname } }
|
||||||
elseif mode:match "split$" then
|
elseif mode:match("split$") then
|
||||||
command = { cmd = mode, args = { fname } }
|
command = { cmd = mode, args = { fname } }
|
||||||
else
|
else
|
||||||
command = { cmd = "edit", args = { fname } }
|
command = { cmd = "edit", args = { fname } }
|
||||||
@@ -369,27 +372,28 @@ end
|
|||||||
---@param mode string
|
---@param mode string
|
||||||
---@param filename string
|
---@param filename string
|
||||||
function M.fn(mode, filename)
|
function M.fn(mode, filename)
|
||||||
|
local fname = utils.escape_special_chars(filename)
|
||||||
if type(mode) ~= "string" then
|
if type(mode) ~= "string" then
|
||||||
mode = ""
|
mode = ""
|
||||||
end
|
end
|
||||||
|
|
||||||
if mode == "tabnew" then
|
if mode == "tabnew" then
|
||||||
return open_file_in_tab(filename)
|
return open_file_in_tab(fname)
|
||||||
end
|
end
|
||||||
|
|
||||||
if mode == "drop" then
|
if mode == "drop" then
|
||||||
return drop(filename)
|
return drop(fname)
|
||||||
end
|
end
|
||||||
|
|
||||||
if mode == "tab_drop" then
|
if mode == "tab_drop" then
|
||||||
return tab_drop(filename)
|
return tab_drop(fname)
|
||||||
end
|
end
|
||||||
|
|
||||||
if mode == "edit_in_place" then
|
if mode == "edit_in_place" then
|
||||||
return edit_in_current_buf(filename)
|
return edit_in_current_buf(fname)
|
||||||
end
|
end
|
||||||
|
|
||||||
local buf_loaded = is_already_loaded(filename)
|
local buf_loaded = is_already_loaded(fname)
|
||||||
|
|
||||||
local found_win = utils.get_win_buf_from_path(filename)
|
local found_win = utils.get_win_buf_from_path(filename)
|
||||||
if found_win and (mode == "preview" or mode == "preview_no_picker") then
|
if found_win and (mode == "preview" or mode == "preview_no_picker") then
|
||||||
@@ -397,7 +401,7 @@ function M.fn(mode, filename)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if not found_win then
|
if not found_win then
|
||||||
open_in_new_window(filename, mode)
|
open_in_new_window(fname, mode)
|
||||||
else
|
else
|
||||||
vim.api.nvim_set_current_win(found_win)
|
vim.api.nvim_set_current_win(found_win)
|
||||||
vim.bo.bufhidden = ""
|
vim.bo.bufhidden = ""
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.fn(node)
|
local function user(node)
|
||||||
if #M.config.system_open.cmd == 0 then
|
if #M.config.system_open.cmd == 0 then
|
||||||
require("nvim-tree.utils").notify.warn "Cannot open file with system application. Unrecognized platform."
|
require("nvim-tree.utils").notify.warn("Cannot open file with system application. Unrecognized platform.")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -49,10 +49,30 @@ function M.fn(node)
|
|||||||
vim.loop.unref(process.handle)
|
vim.loop.unref(process.handle)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@param node Node
|
||||||
|
local function native(node)
|
||||||
|
local _, err = vim.ui.open(node.link_to or node.absolute_path)
|
||||||
|
|
||||||
|
-- err only provided on opener executable not found hence logging path is not useful
|
||||||
|
if err then
|
||||||
|
notify.warn(err)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---@param node Node
|
||||||
|
function M.fn(node)
|
||||||
|
M.open(node)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- TODO always use native once 0.10 is the minimum neovim version
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.config = {}
|
M.config = {}
|
||||||
M.config.system_open = opts.system_open or {}
|
M.config.system_open = opts.system_open or {}
|
||||||
|
|
||||||
|
if vim.fn.has("nvim-0.10") == 1 and #M.config.system_open.cmd == 0 then
|
||||||
|
M.open = native
|
||||||
|
else
|
||||||
|
M.open = user
|
||||||
if #M.config.system_open.cmd == 0 then
|
if #M.config.system_open.cmd == 0 then
|
||||||
if utils.is_windows then
|
if utils.is_windows then
|
||||||
M.config.system_open = {
|
M.config.system_open = {
|
||||||
@@ -65,6 +85,7 @@ function M.setup(opts)
|
|||||||
M.config.system_open.cmd = "xdg-open"
|
M.config.system_open.cmd = "xdg-open"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,71 +0,0 @@
|
|||||||
local git = require "nvim-tree.git"
|
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local renderer = require "nvim-tree.renderer"
|
|
||||||
local explorer_module = require "nvim-tree.explorer"
|
|
||||||
local core = require "nvim-tree.core"
|
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
|
||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
---@param node Explorer|nil
|
|
||||||
---@param projects table
|
|
||||||
local function refresh_nodes(node, projects)
|
|
||||||
Iterator.builder({ node })
|
|
||||||
:applier(function(n)
|
|
||||||
if n.nodes then
|
|
||||||
local toplevel = git.get_toplevel(n.cwd or n.link_to or n.absolute_path)
|
|
||||||
explorer_module.reload(n, projects[toplevel] or {})
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
:recursor(function(n)
|
|
||||||
return n.group_next and { n.group_next } or (n.open and n.nodes)
|
|
||||||
end)
|
|
||||||
:iterate()
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param parent_node Node|nil
|
|
||||||
---@param projects table
|
|
||||||
function M.reload_node_status(parent_node, projects)
|
|
||||||
if parent_node == nil then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local toplevel = git.get_toplevel(parent_node.absolute_path)
|
|
||||||
local status = projects[toplevel] or {}
|
|
||||||
for _, node in ipairs(parent_node.nodes) do
|
|
||||||
explorer_node.update_git_status(node, explorer_node.is_git_ignored(parent_node), status)
|
|
||||||
if node.nodes and #node.nodes > 0 then
|
|
||||||
M.reload_node_status(node, projects)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local event_running = false
|
|
||||||
function M.reload_explorer()
|
|
||||||
if event_running or not core.get_explorer() or vim.v.exiting ~= vim.NIL then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
event_running = true
|
|
||||||
|
|
||||||
local projects = git.reload()
|
|
||||||
refresh_nodes(core.get_explorer(), projects)
|
|
||||||
if view.is_visible() then
|
|
||||||
renderer.draw()
|
|
||||||
end
|
|
||||||
event_running = false
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.reload_git()
|
|
||||||
if not core.get_explorer() or not git.config.git.enable or event_running then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
event_running = true
|
|
||||||
|
|
||||||
local projects = git.reload()
|
|
||||||
M.reload_node_status(core.get_explorer(), projects)
|
|
||||||
renderer.draw()
|
|
||||||
event_running = false
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
current_tab = vim.api.nvim_get_current_tabpage(),
|
current_tab = vim.api.nvim_get_current_tabpage(),
|
||||||
@@ -91,7 +91,10 @@ M.force_dirchange = add_profiling_to(function(foldername, should_open_view)
|
|||||||
if should_open_view then
|
if should_open_view then
|
||||||
require("nvim-tree.lib").open()
|
require("nvim-tree.lib").open()
|
||||||
else
|
else
|
||||||
require("nvim-tree.renderer").draw()
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.fn(node)
|
function M.fn(node)
|
||||||
if not node or node.name == ".." then
|
if not node or node.name == ".." then
|
||||||
require("nvim-tree.actions.root.change-dir").fn ".."
|
require("nvim-tree.actions.root.change-dir").fn("..")
|
||||||
else
|
else
|
||||||
local cwd = core.get_cwd()
|
local cwd = core.get_cwd()
|
||||||
if cwd == nil then
|
if cwd == nil then
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.change_dir = require "nvim-tree.actions.root.change-dir"
|
M.change_dir = require("nvim-tree.actions.root.change-dir")
|
||||||
M.dir_up = require "nvim-tree.actions.root.dir-up"
|
M.dir_up = require("nvim-tree.actions.root.dir-up")
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.change_dir.setup(opts)
|
M.change_dir.setup(opts)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local view = require "nvim-tree.view"
|
local view = require("nvim-tree.view")
|
||||||
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
local finders_find_file = require("nvim-tree.actions.finders.find-file")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -49,9 +49,9 @@ function M.fn(opts)
|
|||||||
end
|
end
|
||||||
elseif opts.open then
|
elseif opts.open then
|
||||||
-- open
|
-- open
|
||||||
lib.open { current_window = opts.current_window, winid = opts.winid }
|
lib.open({ current_window = opts.current_window, winid = opts.winid })
|
||||||
if not opts.focus then
|
if not opts.focus then
|
||||||
vim.cmd "noautocmd wincmd p"
|
vim.cmd("noautocmd wincmd p")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.find_file = require "nvim-tree.actions.tree.find-file"
|
M.find_file = require("nvim-tree.actions.tree.find-file")
|
||||||
M.modifiers = require "nvim-tree.actions.tree.modifiers"
|
M.modifiers = require("nvim-tree.actions.tree.modifiers")
|
||||||
M.open = require "nvim-tree.actions.tree.open"
|
M.open = require("nvim-tree.actions.tree.open")
|
||||||
M.toggle = require "nvim-tree.actions.tree.toggle"
|
M.toggle = require("nvim-tree.actions.tree.toggle")
|
||||||
M.resize = require "nvim-tree.actions.tree.resize"
|
M.resize = require("nvim-tree.actions.tree.resize")
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.find_file.setup(opts)
|
M.find_file.setup(opts)
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
local renderer = require "nvim-tree.renderer"
|
local utils = require("nvim-tree.utils")
|
||||||
local utils = require "nvim-tree.utils"
|
local core = require("nvim-tree.core")
|
||||||
local core = require "nvim-tree.core"
|
local lib = require("nvim-tree.lib")
|
||||||
local lib = require "nvim-tree.lib"
|
local Iterator = require("nvim-tree.iterators.node-iterator")
|
||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -46,7 +45,7 @@ function M.fn(keep_buffers)
|
|||||||
end)
|
end)
|
||||||
:iterate()
|
:iterate()
|
||||||
|
|
||||||
renderer.draw()
|
explorer.renderer:draw()
|
||||||
utils.focus_node_or_parent(node)
|
utils.focus_node_or_parent(node)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
local core = require "nvim-tree.core"
|
local core = require("nvim-tree.core")
|
||||||
local renderer = require "nvim-tree.renderer"
|
local Iterator = require("nvim-tree.iterators.node-iterator")
|
||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
local notify = require("nvim-tree.notify")
|
||||||
local notify = require "nvim-tree.notify"
|
local lib = require("nvim-tree.lib")
|
||||||
local lib = require "nvim-tree.lib"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -65,11 +64,14 @@ end
|
|||||||
|
|
||||||
---@param base_node table
|
---@param base_node table
|
||||||
function M.fn(base_node)
|
function M.fn(base_node)
|
||||||
local node = base_node.nodes and base_node or core.get_explorer()
|
local explorer = core.get_explorer()
|
||||||
|
local node = base_node.nodes and base_node or explorer
|
||||||
if gen_iterator()(node) then
|
if gen_iterator()(node) then
|
||||||
notify.warn("expansion iteration was halted after " .. M.MAX_FOLDER_DISCOVERY .. " discovered folders")
|
notify.warn("expansion iteration was halted after " .. M.MAX_FOLDER_DISCOVERY .. " discovered folders")
|
||||||
end
|
end
|
||||||
renderer.draw()
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.collapse_all = require "nvim-tree.actions.tree.modifiers.collapse-all"
|
M.collapse_all = require("nvim-tree.actions.tree.modifiers.collapse-all")
|
||||||
M.expand_all = require "nvim-tree.actions.tree.modifiers.expand-all"
|
M.expand_all = require("nvim-tree.actions.tree.modifiers.expand-all")
|
||||||
M.toggles = require "nvim-tree.actions.tree.modifiers.toggles"
|
M.toggles = require("nvim-tree.actions.tree.modifiers.toggles")
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.expand_all.setup(opts)
|
M.expand_all.setup(opts)
|
||||||
|
|||||||
@@ -1,49 +1,72 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local filters = require "nvim-tree.explorer.filters"
|
local core = require("nvim-tree.core")
|
||||||
local reloaders = require "nvim-tree.actions.reloaders"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
local function reload()
|
---@param explorer Explorer
|
||||||
|
local function reload(explorer)
|
||||||
local node = lib.get_node_at_cursor()
|
local node = lib.get_node_at_cursor()
|
||||||
reloaders.reload_explorer()
|
explorer:reload_explorer()
|
||||||
utils.focus_node_or_parent(node)
|
utils.focus_node_or_parent(node)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.custom()
|
local function wrap_explorer(fn)
|
||||||
filters.config.filter_custom = not filters.config.filter_custom
|
return function(...)
|
||||||
reload()
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
return fn(explorer, ...)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.git_ignored()
|
---@param explorer Explorer
|
||||||
filters.config.filter_git_ignored = not filters.config.filter_git_ignored
|
local function custom(explorer)
|
||||||
reload()
|
explorer.filters.config.filter_custom = not explorer.filters.config.filter_custom
|
||||||
|
reload(explorer)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.git_clean()
|
---@param explorer Explorer
|
||||||
filters.config.filter_git_clean = not filters.config.filter_git_clean
|
local function git_ignored(explorer)
|
||||||
reload()
|
explorer.filters.config.filter_git_ignored = not explorer.filters.config.filter_git_ignored
|
||||||
|
reload(explorer)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.no_buffer()
|
---@param explorer Explorer
|
||||||
filters.config.filter_no_buffer = not filters.config.filter_no_buffer
|
local function git_clean(explorer)
|
||||||
reload()
|
explorer.filters.config.filter_git_clean = not explorer.filters.config.filter_git_clean
|
||||||
|
reload(explorer)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.no_bookmark()
|
---@param explorer Explorer
|
||||||
filters.config.filter_no_bookmark = not filters.config.filter_no_bookmark
|
local function no_buffer(explorer)
|
||||||
reload()
|
explorer.filters.config.filter_no_buffer = not explorer.filters.config.filter_no_buffer
|
||||||
|
reload(explorer)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.dotfiles()
|
---@param explorer Explorer
|
||||||
filters.config.filter_dotfiles = not filters.config.filter_dotfiles
|
local function no_bookmark(explorer)
|
||||||
reload()
|
explorer.filters.config.filter_no_bookmark = not explorer.filters.config.filter_no_bookmark
|
||||||
|
reload(explorer)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.enable()
|
---@param explorer Explorer
|
||||||
filters.config.enable = not filters.config.enable
|
local function dotfiles(explorer)
|
||||||
reload()
|
explorer.filters.config.filter_dotfiles = not explorer.filters.config.filter_dotfiles
|
||||||
|
reload(explorer)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@param explorer Explorer
|
||||||
|
local function enable(explorer)
|
||||||
|
explorer.filters.config.enable = not explorer.filters.config.enable
|
||||||
|
reload(explorer)
|
||||||
|
end
|
||||||
|
|
||||||
|
M.custom = wrap_explorer(custom)
|
||||||
|
M.git_ignored = wrap_explorer(git_ignored)
|
||||||
|
M.git_clean = wrap_explorer(git_clean)
|
||||||
|
M.no_buffer = wrap_explorer(no_buffer)
|
||||||
|
M.no_bookmark = wrap_explorer(no_bookmark)
|
||||||
|
M.dotfiles = wrap_explorer(dotfiles)
|
||||||
|
M.enable = wrap_explorer(enable)
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local view = require "nvim-tree.view"
|
local view = require("nvim-tree.view")
|
||||||
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
local finders_find_file = require("nvim-tree.actions.finders.find-file")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -29,11 +29,11 @@ function M.fn(opts)
|
|||||||
view.focus()
|
view.focus()
|
||||||
else
|
else
|
||||||
-- open
|
-- open
|
||||||
lib.open {
|
lib.open({
|
||||||
path = opts.path,
|
path = opts.path,
|
||||||
current_window = opts.current_window,
|
current_window = opts.current_window,
|
||||||
winid = opts.winid,
|
winid = opts.winid,
|
||||||
}
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
-- find file
|
-- find file
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
local view = require "nvim-tree.view"
|
local view = require("nvim-tree.view")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local view = require "nvim-tree.view"
|
local view = require("nvim-tree.view")
|
||||||
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
local finders_find_file = require("nvim-tree.actions.finders.find-file")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -45,11 +45,11 @@ function M.fn(opts, no_focus, cwd, bang)
|
|||||||
view.close()
|
view.close()
|
||||||
else
|
else
|
||||||
-- open
|
-- open
|
||||||
lib.open {
|
lib.open({
|
||||||
path = opts.path,
|
path = opts.path,
|
||||||
current_window = opts.current_window,
|
current_window = opts.current_window,
|
||||||
winid = opts.winid,
|
winid = opts.winid,
|
||||||
}
|
})
|
||||||
|
|
||||||
-- find file
|
-- find file
|
||||||
if M.config.update_focused_file.enable or opts.find_file then
|
if M.config.update_focused_file.enable or opts.find_file then
|
||||||
@@ -64,7 +64,7 @@ function M.fn(opts, no_focus, cwd, bang)
|
|||||||
|
|
||||||
-- restore focus
|
-- restore focus
|
||||||
if not opts.focus then
|
if not opts.focus then
|
||||||
vim.cmd "noautocmd wincmd p"
|
vim.cmd("noautocmd wincmd p")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,18 +1,13 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require("nvim-tree.lib")
|
||||||
local view = require "nvim-tree.view"
|
local core = require("nvim-tree.core")
|
||||||
local utils = require "nvim-tree.utils"
|
local view = require("nvim-tree.view")
|
||||||
local actions = require "nvim-tree.actions"
|
local utils = require("nvim-tree.utils")
|
||||||
local appearance_diagnostics = require "nvim-tree.appearance.diagnostics"
|
local actions = require("nvim-tree.actions")
|
||||||
local events = require "nvim-tree.events"
|
local appearance_diagnostics = require("nvim-tree.appearance.diagnostics")
|
||||||
local help = require "nvim-tree.help"
|
local events = require("nvim-tree.events")
|
||||||
local live_filter = require "nvim-tree.live-filter"
|
local help = require("nvim-tree.help")
|
||||||
local marks = require "nvim-tree.marks"
|
local keymap = require("nvim-tree.keymap")
|
||||||
local marks_navigation = require "nvim-tree.marks.navigation"
|
local notify = require("nvim-tree.notify")
|
||||||
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 notify = require "nvim-tree.notify"
|
|
||||||
|
|
||||||
local Api = {
|
local Api = {
|
||||||
tree = {},
|
tree = {},
|
||||||
@@ -43,26 +38,27 @@ local Api = {
|
|||||||
diagnostics = {},
|
diagnostics = {},
|
||||||
}
|
}
|
||||||
|
|
||||||
--- Do nothing when setup not called.
|
--- Print error when setup not called.
|
||||||
--- f function to invoke
|
--- f function to invoke
|
||||||
---@param f function
|
---@param f function
|
||||||
|
---@return fun(...) : any
|
||||||
local function wrap(f)
|
local function wrap(f)
|
||||||
return function(...)
|
return function(...)
|
||||||
if vim.g.NvimTreeSetup == 1 then
|
if vim.g.NvimTreeSetup == 1 then
|
||||||
return f(...)
|
return f(...)
|
||||||
else
|
else
|
||||||
notify.error "nvim-tree setup not called"
|
notify.error("nvim-tree setup not called")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---Inject the node as the first argument if absent.
|
---Inject the node as the first argument if present otherwise do nothing.
|
||||||
---@param fn function function to invoke
|
---@param fn function function to invoke
|
||||||
local function wrap_node(fn)
|
local function wrap_node(fn)
|
||||||
return function(node, ...)
|
return function(node, ...)
|
||||||
node = node or lib.get_node_at_cursor()
|
node = node or lib.get_node_at_cursor()
|
||||||
if node then
|
if node then
|
||||||
fn(node, ...)
|
return fn(node, ...)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -72,10 +68,37 @@ end
|
|||||||
local function wrap_node_or_nil(fn)
|
local function wrap_node_or_nil(fn)
|
||||||
return function(node, ...)
|
return function(node, ...)
|
||||||
node = node or lib.get_node_at_cursor()
|
node = node or lib.get_node_at_cursor()
|
||||||
fn(node, ...)
|
return fn(node, ...)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Invoke a method on the singleton explorer.
|
||||||
|
---Print error when setup not called.
|
||||||
|
---@param explorer_method string explorer method name
|
||||||
|
---@return fun(...) : any
|
||||||
|
local function wrap_explorer(explorer_method)
|
||||||
|
return wrap(function(...)
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
return explorer[explorer_method](explorer, ...)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
---Invoke a member's method on the singleton explorer.
|
||||||
|
---Print error when setup not called.
|
||||||
|
---@param explorer_member string explorer member name
|
||||||
|
---@param member_method string method name to invoke on member
|
||||||
|
---@return fun(...) : any
|
||||||
|
local function wrap_explorer_member(explorer_member, member_method)
|
||||||
|
return wrap(function(...)
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
return explorer[explorer_member][member_method](explorer[explorer_member], ...)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
---@class ApiTreeOpenOpts
|
---@class ApiTreeOpenOpts
|
||||||
---@field path string|nil path
|
---@field path string|nil path
|
||||||
---@field current_window boolean|nil default false
|
---@field current_window boolean|nil default false
|
||||||
@@ -98,7 +121,7 @@ Api.tree.toggle = wrap(actions.tree.toggle.fn)
|
|||||||
Api.tree.close = wrap(view.close)
|
Api.tree.close = wrap(view.close)
|
||||||
Api.tree.close_in_this_tab = wrap(view.close_this_tab_only)
|
Api.tree.close_in_this_tab = wrap(view.close_this_tab_only)
|
||||||
Api.tree.close_in_all_tabs = wrap(view.close_all_tabs)
|
Api.tree.close_in_all_tabs = wrap(view.close_all_tabs)
|
||||||
Api.tree.reload = wrap(actions.reloaders.reload_explorer)
|
Api.tree.reload = wrap_explorer("reload_explorer")
|
||||||
|
|
||||||
---@class ApiTreeResizeOpts
|
---@class ApiTreeResizeOpts
|
||||||
---@field width string|function|number|table|nil
|
---@field width string|function|number|table|nil
|
||||||
@@ -113,7 +136,7 @@ end)
|
|||||||
|
|
||||||
Api.tree.change_root_to_node = wrap_node(function(node)
|
Api.tree.change_root_to_node = wrap_node(function(node)
|
||||||
if node.name == ".." then
|
if node.name == ".." then
|
||||||
actions.root.change_dir.fn ".."
|
actions.root.change_dir.fn("..")
|
||||||
elseif node.nodes ~= nil then
|
elseif node.nodes ~= nil then
|
||||||
actions.root.change_dir.fn(lib.get_last_group_node(node).absolute_path)
|
actions.root.change_dir.fn(lib.get_last_group_node(node).absolute_path)
|
||||||
end
|
end
|
||||||
@@ -159,20 +182,20 @@ Api.tree.winid = wrap(view.winid)
|
|||||||
Api.fs.create = wrap_node_or_nil(actions.fs.create_file.fn)
|
Api.fs.create = wrap_node_or_nil(actions.fs.create_file.fn)
|
||||||
Api.fs.remove = wrap_node(actions.fs.remove_file.fn)
|
Api.fs.remove = wrap_node(actions.fs.remove_file.fn)
|
||||||
Api.fs.trash = wrap_node(actions.fs.trash.fn)
|
Api.fs.trash = wrap_node(actions.fs.trash.fn)
|
||||||
Api.fs.rename_node = wrap_node(actions.fs.rename_file.fn ":t")
|
Api.fs.rename_node = wrap_node(actions.fs.rename_file.fn(":t"))
|
||||||
Api.fs.rename = wrap_node(actions.fs.rename_file.fn ":t")
|
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
|
||||||
@@ -189,7 +212,7 @@ end
|
|||||||
local function open_or_expand_or_dir_up(mode, toggle_group)
|
local function open_or_expand_or_dir_up(mode, toggle_group)
|
||||||
return function(node)
|
return function(node)
|
||||||
if node.name == ".." then
|
if node.name == ".." then
|
||||||
actions.root.change_dir.fn ".."
|
actions.root.change_dir.fn("..")
|
||||||
elseif node.nodes then
|
elseif node.nodes then
|
||||||
lib.expand_or_collapse(node, toggle_group)
|
lib.expand_or_collapse(node, toggle_group)
|
||||||
elseif not toggle_group then
|
elseif not toggle_group then
|
||||||
@@ -198,59 +221,59 @@ local function open_or_expand_or_dir_up(mode, toggle_group)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Api.node.open.edit = wrap_node(open_or_expand_or_dir_up "edit")
|
Api.node.open.edit = wrap_node(open_or_expand_or_dir_up("edit"))
|
||||||
Api.node.open.drop = wrap_node(open_or_expand_or_dir_up "drop")
|
Api.node.open.drop = wrap_node(open_or_expand_or_dir_up("drop"))
|
||||||
Api.node.open.tab_drop = wrap_node(open_or_expand_or_dir_up "tab_drop")
|
Api.node.open.tab_drop = wrap_node(open_or_expand_or_dir_up("tab_drop"))
|
||||||
Api.node.open.replace_tree_buffer = wrap_node(open_or_expand_or_dir_up "edit_in_place")
|
Api.node.open.replace_tree_buffer = wrap_node(open_or_expand_or_dir_up("edit_in_place"))
|
||||||
Api.node.open.no_window_picker = wrap_node(open_or_expand_or_dir_up "edit_no_picker")
|
Api.node.open.no_window_picker = wrap_node(open_or_expand_or_dir_up("edit_no_picker"))
|
||||||
Api.node.open.vertical = wrap_node(open_or_expand_or_dir_up "vsplit")
|
Api.node.open.vertical = wrap_node(open_or_expand_or_dir_up("vsplit"))
|
||||||
Api.node.open.horizontal = wrap_node(open_or_expand_or_dir_up "split")
|
Api.node.open.horizontal = wrap_node(open_or_expand_or_dir_up("split"))
|
||||||
Api.node.open.tab = wrap_node(open_or_expand_or_dir_up "tabnew")
|
Api.node.open.tab = wrap_node(open_or_expand_or_dir_up("tabnew"))
|
||||||
Api.node.open.toggle_group_empty = wrap_node(open_or_expand_or_dir_up("toggle_group_empty", true))
|
Api.node.open.toggle_group_empty = wrap_node(open_or_expand_or_dir_up("toggle_group_empty", true))
|
||||||
Api.node.open.preview = wrap_node(open_or_expand_or_dir_up "preview")
|
Api.node.open.preview = wrap_node(open_or_expand_or_dir_up("preview"))
|
||||||
Api.node.open.preview_no_picker = wrap_node(open_or_expand_or_dir_up "preview_no_picker")
|
Api.node.open.preview_no_picker = wrap_node(open_or_expand_or_dir_up("preview_no_picker"))
|
||||||
|
|
||||||
Api.node.show_info_popup = wrap_node(actions.node.file_popup.toggle_file_info)
|
Api.node.show_info_popup = wrap_node(actions.node.file_popup.toggle_file_info)
|
||||||
Api.node.run.cmd = wrap_node(actions.node.run_command.run_file_command)
|
Api.node.run.cmd = wrap_node(actions.node.run_command.run_file_command)
|
||||||
Api.node.run.system = wrap_node(actions.node.system_open.fn)
|
Api.node.run.system = wrap_node(actions.node.system_open.fn)
|
||||||
|
|
||||||
Api.node.navigate.sibling.next = wrap_node(actions.moves.sibling.fn "next")
|
Api.node.navigate.sibling.next = wrap_node(actions.moves.sibling.fn("next"))
|
||||||
Api.node.navigate.sibling.prev = wrap_node(actions.moves.sibling.fn "prev")
|
Api.node.navigate.sibling.prev = wrap_node(actions.moves.sibling.fn("prev"))
|
||||||
Api.node.navigate.sibling.first = wrap_node(actions.moves.sibling.fn "first")
|
Api.node.navigate.sibling.first = wrap_node(actions.moves.sibling.fn("first"))
|
||||||
Api.node.navigate.sibling.last = wrap_node(actions.moves.sibling.fn "last")
|
Api.node.navigate.sibling.last = wrap_node(actions.moves.sibling.fn("last"))
|
||||||
Api.node.navigate.parent = wrap_node(actions.moves.parent.fn(false))
|
Api.node.navigate.parent = wrap_node(actions.moves.parent.fn(false))
|
||||||
Api.node.navigate.parent_close = wrap_node(actions.moves.parent.fn(true))
|
Api.node.navigate.parent_close = wrap_node(actions.moves.parent.fn(true))
|
||||||
Api.node.navigate.git.next = wrap_node(actions.moves.item.fn { where = "next", what = "git" })
|
Api.node.navigate.git.next = wrap_node(actions.moves.item.fn({ where = "next", what = "git" }))
|
||||||
Api.node.navigate.git.next_skip_gitignored = wrap_node(actions.moves.item.fn { where = "next", what = "git", skip_gitignored = true })
|
Api.node.navigate.git.next_skip_gitignored = wrap_node(actions.moves.item.fn({ where = "next", what = "git", skip_gitignored = true }))
|
||||||
Api.node.navigate.git.next_recursive = wrap_node(actions.moves.item.fn { where = "next", what = "git", recurse = true })
|
Api.node.navigate.git.next_recursive = wrap_node(actions.moves.item.fn({ where = "next", what = "git", recurse = true }))
|
||||||
Api.node.navigate.git.prev = wrap_node(actions.moves.item.fn { where = "prev", what = "git" })
|
Api.node.navigate.git.prev = wrap_node(actions.moves.item.fn({ where = "prev", what = "git" }))
|
||||||
Api.node.navigate.git.prev_skip_gitignored = wrap_node(actions.moves.item.fn { where = "prev", what = "git", skip_gitignored = true })
|
Api.node.navigate.git.prev_skip_gitignored = wrap_node(actions.moves.item.fn({ where = "prev", what = "git", skip_gitignored = true }))
|
||||||
Api.node.navigate.git.prev_recursive = wrap_node(actions.moves.item.fn { where = "prev", what = "git", recurse = true })
|
Api.node.navigate.git.prev_recursive = wrap_node(actions.moves.item.fn({ where = "prev", what = "git", recurse = true }))
|
||||||
Api.node.navigate.diagnostics.next = wrap_node(actions.moves.item.fn { where = "next", what = "diag" })
|
Api.node.navigate.diagnostics.next = wrap_node(actions.moves.item.fn({ where = "next", what = "diag" }))
|
||||||
Api.node.navigate.diagnostics.next_recursive = wrap_node(actions.moves.item.fn { where = "next", what = "diag", recurse = true })
|
Api.node.navigate.diagnostics.next_recursive = wrap_node(actions.moves.item.fn({ where = "next", what = "diag", recurse = true }))
|
||||||
Api.node.navigate.diagnostics.prev = wrap_node(actions.moves.item.fn { where = "prev", what = "diag" })
|
Api.node.navigate.diagnostics.prev = wrap_node(actions.moves.item.fn({ where = "prev", what = "diag" }))
|
||||||
Api.node.navigate.diagnostics.prev_recursive = wrap_node(actions.moves.item.fn { where = "prev", what = "diag", recurse = true })
|
Api.node.navigate.diagnostics.prev_recursive = wrap_node(actions.moves.item.fn({ where = "prev", what = "diag", recurse = true }))
|
||||||
Api.node.navigate.opened.next = wrap_node(actions.moves.item.fn { where = "next", what = "opened" })
|
Api.node.navigate.opened.next = wrap_node(actions.moves.item.fn({ where = "next", what = "opened" }))
|
||||||
Api.node.navigate.opened.prev = wrap_node(actions.moves.item.fn { where = "prev", what = "opened" })
|
Api.node.navigate.opened.prev = wrap_node(actions.moves.item.fn({ where = "prev", what = "opened" }))
|
||||||
|
|
||||||
Api.git.reload = wrap(actions.reloaders.reload_git)
|
Api.git.reload = wrap_explorer("reload_git")
|
||||||
|
|
||||||
Api.events.subscribe = events.subscribe
|
Api.events.subscribe = events.subscribe
|
||||||
Api.events.Event = events.Event
|
Api.events.Event = events.Event
|
||||||
|
|
||||||
Api.live_filter.start = wrap(live_filter.start_filtering)
|
Api.live_filter.start = wrap_explorer_member("live_filter", "start_filtering")
|
||||||
Api.live_filter.clear = wrap(live_filter.clear_filter)
|
Api.live_filter.clear = wrap_explorer_member("live_filter", "clear_filter")
|
||||||
|
|
||||||
Api.marks.get = wrap_node(marks.get_mark)
|
Api.marks.get = wrap_node(wrap_explorer_member("marks", "get"))
|
||||||
Api.marks.list = wrap(marks.get_marks)
|
Api.marks.list = wrap_explorer_member("marks", "list")
|
||||||
Api.marks.toggle = wrap_node(marks.toggle_mark)
|
Api.marks.toggle = wrap_node(wrap_explorer_member("marks", "toggle"))
|
||||||
Api.marks.clear = wrap(marks.clear_marks)
|
Api.marks.clear = wrap_explorer_member("marks", "clear")
|
||||||
Api.marks.bulk.delete = wrap(marks_bulk_delete.bulk_delete)
|
Api.marks.bulk.delete = wrap_explorer_member("marks", "bulk_delete")
|
||||||
Api.marks.bulk.trash = wrap(marks_bulk_trash.bulk_trash)
|
Api.marks.bulk.trash = wrap_explorer_member("marks", "bulk_trash")
|
||||||
Api.marks.bulk.move = wrap(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)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
local appearance = require "nvim-tree.appearance"
|
local appearance = require("nvim-tree.appearance")
|
||||||
|
|
||||||
-- others with name and links less than this arbitrary value are short
|
-- others with name and links less than this arbitrary value are short
|
||||||
local SHORT_LEN = 50
|
local SHORT_LEN = 50
|
||||||
@@ -129,7 +129,7 @@ function M.hi_test()
|
|||||||
render_displays("other, long", displays_long, bufnr, l)
|
render_displays("other, long", displays_long, bufnr, l)
|
||||||
|
|
||||||
-- finalise and focus the buffer
|
-- finalise and focus the buffer
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("modifiable", false, { buf = bufnr })
|
vim.api.nvim_set_option_value("modifiable", false, { buf = bufnr })
|
||||||
else
|
else
|
||||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_buf_set_option(bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ M.HIGHLIGHT_GROUPS = {
|
|||||||
-- Standard
|
-- Standard
|
||||||
{ group = "NvimTreeNormal", link = "Normal" },
|
{ group = "NvimTreeNormal", link = "Normal" },
|
||||||
{ group = "NvimTreeNormalFloat", link = "NormalFloat" },
|
{ group = "NvimTreeNormalFloat", link = "NormalFloat" },
|
||||||
|
{ group = "NvimTreeNormalFloatBorder", link = "FloatBorder" },
|
||||||
{ group = "NvimTreeNormalNC", link = "NvimTreeNormal" },
|
{ group = "NvimTreeNormalNC", link = "NvimTreeNormal" },
|
||||||
|
|
||||||
{ group = "NvimTreeLineNr", link = "LineNr" },
|
{ group = "NvimTreeLineNr", link = "LineNr" },
|
||||||
@@ -76,6 +77,14 @@ M.HIGHLIGHT_GROUPS = {
|
|||||||
{ group = "NvimTreeModifiedFileHL", link = "NvimTreeModifiedIcon" },
|
{ group = "NvimTreeModifiedFileHL", link = "NvimTreeModifiedIcon" },
|
||||||
{ group = "NvimTreeModifiedFolderHL", link = "NvimTreeModifiedFileHL" },
|
{ group = "NvimTreeModifiedFolderHL", link = "NvimTreeModifiedFileHL" },
|
||||||
|
|
||||||
|
-- Hidden
|
||||||
|
{ group = "NvimTreeHiddenIcon", link = "Conceal" },
|
||||||
|
{ group = "NvimTreeHiddenFileHL", link = "NvimTreeHiddenIcon" },
|
||||||
|
{ group = "NvimTreeHiddenFolderHL", link = "NvimTreeHiddenFileHL" },
|
||||||
|
|
||||||
|
-- Hidden Display
|
||||||
|
{ group = "NvimTreeHiddenDisplay", link = "Conceal" },
|
||||||
|
|
||||||
-- Opened
|
-- Opened
|
||||||
{ group = "NvimTreeOpenedHL", link = "Special" },
|
{ group = "NvimTreeOpenedHL", link = "Special" },
|
||||||
|
|
||||||
|
|||||||
@@ -6,16 +6,14 @@ M._modified = {}
|
|||||||
---refresh M._modified
|
---refresh M._modified
|
||||||
function M.reload_modified()
|
function M.reload_modified()
|
||||||
M._modified = {}
|
M._modified = {}
|
||||||
local bufs = vim.fn.getbufinfo { bufmodified = 1, buflisted = 1 }
|
local bufs = vim.fn.getbufinfo({ bufmodified = 1, buflisted = 1 })
|
||||||
for _, buf in pairs(bufs) do
|
for _, buf in pairs(bufs) do
|
||||||
local path = buf.name
|
local path = buf.name
|
||||||
if path ~= "" then -- not a [No Name] buffer
|
if path ~= "" then -- not a [No Name] buffer
|
||||||
-- mark all the parent as modified as well
|
-- mark all the parent as modified as well
|
||||||
while
|
while M._modified[path] ~= true do
|
||||||
M._modified[path] ~= true
|
|
||||||
-- no need to keep going if already recorded
|
-- no need to keep going if already recorded
|
||||||
-- This also prevents an infinite loop
|
-- This also prevents an infinite loop
|
||||||
do
|
|
||||||
M._modified[path] = true
|
M._modified[path] = true
|
||||||
path = vim.fn.fnamemodify(path, ":h")
|
path = vim.fn.fnamemodify(path, ":h")
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
local api = require "nvim-tree.api"
|
local api = require("nvim-tree.api")
|
||||||
local view = require "nvim-tree.view"
|
local view = require("nvim-tree.view")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -12,7 +12,7 @@ local CMDS = {
|
|||||||
complete = "dir",
|
complete = "dir",
|
||||||
},
|
},
|
||||||
command = function(c)
|
command = function(c)
|
||||||
api.tree.open { path = c.args }
|
api.tree.open({ path = c.args })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -33,12 +33,12 @@ local CMDS = {
|
|||||||
complete = "dir",
|
complete = "dir",
|
||||||
},
|
},
|
||||||
command = function(c)
|
command = function(c)
|
||||||
api.tree.toggle {
|
api.tree.toggle({
|
||||||
find_file = false,
|
find_file = false,
|
||||||
focus = true,
|
focus = true,
|
||||||
path = c.args,
|
path = c.args,
|
||||||
update_root = false,
|
update_root = false,
|
||||||
}
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -79,11 +79,11 @@ local CMDS = {
|
|||||||
bar = true,
|
bar = true,
|
||||||
},
|
},
|
||||||
command = function(c)
|
command = function(c)
|
||||||
api.tree.find_file {
|
api.tree.find_file({
|
||||||
open = true,
|
open = true,
|
||||||
focus = true,
|
focus = true,
|
||||||
update_root = c.bang,
|
update_root = c.bang,
|
||||||
}
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -95,12 +95,12 @@ local CMDS = {
|
|||||||
complete = "dir",
|
complete = "dir",
|
||||||
},
|
},
|
||||||
command = function(c)
|
command = function(c)
|
||||||
api.tree.toggle {
|
api.tree.toggle({
|
||||||
find_file = true,
|
find_file = true,
|
||||||
focus = true,
|
focus = true,
|
||||||
path = c.args,
|
path = c.args,
|
||||||
update_root = c.bang,
|
update_root = c.bang,
|
||||||
}
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
local events = require "nvim-tree.events"
|
local events = require("nvim-tree.events")
|
||||||
local explorer = require "nvim-tree.explorer"
|
local view = require("nvim-tree.view")
|
||||||
local live_filter = require "nvim-tree.live-filter"
|
local log = require("nvim-tree.log")
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local log = require "nvim-tree.log"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -17,7 +15,7 @@ function M.init(foldername)
|
|||||||
if TreeExplorer then
|
if TreeExplorer then
|
||||||
TreeExplorer:destroy()
|
TreeExplorer:destroy()
|
||||||
end
|
end
|
||||||
TreeExplorer = explorer.Explorer.new(foldername)
|
TreeExplorer = require("nvim-tree.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
|
||||||
@@ -45,7 +43,7 @@ function M.get_nodes_starting_line()
|
|||||||
if view.is_root_folder_visible(M.get_cwd()) then
|
if view.is_root_folder_visible(M.get_cwd()) then
|
||||||
offset = offset + 1
|
offset = offset + 1
|
||||||
end
|
end
|
||||||
if live_filter.filter then
|
if TreeExplorer and TreeExplorer.live_filter.filter then
|
||||||
return offset + 1
|
return offset + 1
|
||||||
end
|
end
|
||||||
return offset
|
return offset
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local core = require("nvim-tree.core")
|
||||||
local view = require "nvim-tree.view"
|
local utils = require("nvim-tree.utils")
|
||||||
local log = require "nvim-tree.log"
|
local view = require("nvim-tree.view")
|
||||||
|
local log = require("nvim-tree.log")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -41,7 +42,7 @@ local function from_nvim_lsp()
|
|||||||
|
|
||||||
-- is_enabled is not present in all 0.10 builds/releases, see #2781
|
-- is_enabled is not present in all 0.10 builds/releases, see #2781
|
||||||
local is_enabled = false
|
local is_enabled = false
|
||||||
if vim.fn.has "nvim-0.10" == 1 and type(vim.diagnostic.is_enabled) == "function" then
|
if vim.fn.has("nvim-0.10") == 1 and type(vim.diagnostic.is_enabled) == "function" then
|
||||||
is_enabled = vim.diagnostic.is_enabled()
|
is_enabled = vim.diagnostic.is_enabled()
|
||||||
elseif type(vim.diagnostic.is_disabled) == "function" then ---@diagnostic disable-line: deprecated
|
elseif type(vim.diagnostic.is_disabled) == "function" then ---@diagnostic disable-line: deprecated
|
||||||
is_enabled = not vim.diagnostic.is_disabled() ---@diagnostic disable-line: deprecated
|
is_enabled = not vim.diagnostic.is_disabled() ---@diagnostic disable-line: deprecated
|
||||||
@@ -76,7 +77,7 @@ local function handle_coc_exception(err)
|
|||||||
local notify = true
|
local notify = true
|
||||||
|
|
||||||
-- avoid distractions on interrupts (CTRL-C)
|
-- avoid distractions on interrupts (CTRL-C)
|
||||||
if err:find "Vim:Interrupt" or err:find "Keyboard interrupt" then
|
if err:find("Vim:Interrupt") or err:find("Keyboard interrupt") then
|
||||||
notify = false
|
notify = false
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -99,7 +100,7 @@ local function from_coc()
|
|||||||
end
|
end
|
||||||
|
|
||||||
local ok, diagnostic_list = xpcall(function()
|
local ok, diagnostic_list = xpcall(function()
|
||||||
return vim.fn.CocAction "diagnosticList"
|
return vim.fn.CocAction("diagnosticList")
|
||||||
end, handle_coc_exception)
|
end, handle_coc_exception)
|
||||||
if not ok or type(diagnostic_list) ~= "table" or vim.tbl_isempty(diagnostic_list) then
|
if not ok or type(diagnostic_list) ~= "table" or vim.tbl_isempty(diagnostic_list) then
|
||||||
return {}
|
return {}
|
||||||
@@ -151,21 +152,24 @@ function M.update()
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
utils.debounce("diagnostics", M.debounce_delay, function()
|
utils.debounce("diagnostics", M.debounce_delay, function()
|
||||||
local profile = log.profile_start "diagnostics update"
|
local profile = log.profile_start("diagnostics update")
|
||||||
if is_using_coc() then
|
if is_using_coc() then
|
||||||
NODE_SEVERITIES = from_coc()
|
NODE_SEVERITIES = from_coc()
|
||||||
else
|
else
|
||||||
NODE_SEVERITIES = from_nvim_lsp()
|
NODE_SEVERITIES = from_nvim_lsp()
|
||||||
end
|
end
|
||||||
NODE_SEVERITIES_VERSION = NODE_SEVERITIES_VERSION + 1
|
NODE_SEVERITIES_VERSION = NODE_SEVERITIES_VERSION + 1
|
||||||
if log.enabled "diagnostics" then
|
if log.enabled("diagnostics") then
|
||||||
for bufname, severity in pairs(NODE_SEVERITIES) do
|
for bufname, severity in pairs(NODE_SEVERITIES) do
|
||||||
log.line("diagnostics", "Indexing bufname '%s' with severity %d", bufname, severity)
|
log.line("diagnostics", "Indexing bufname '%s' with severity %d", bufname, severity)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
log.profile_end(profile)
|
log.profile_end(profile)
|
||||||
if view.is_buf_valid(view.get_bufnr()) then
|
if view.is_buf_valid(view.get_bufnr()) then
|
||||||
require("nvim-tree.renderer").draw()
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -16,6 +16,18 @@ M.ICON_PLACEMENT = {
|
|||||||
signcolumn = 1,
|
signcolumn = 1,
|
||||||
before = 2,
|
before = 2,
|
||||||
after = 3,
|
after = 3,
|
||||||
|
right_align = 4,
|
||||||
|
}
|
||||||
|
|
||||||
|
---Reason for filter in filter.lua
|
||||||
|
---@enum FILTER_REASON
|
||||||
|
M.FILTER_REASON = {
|
||||||
|
none = 0, -- It's not filtered
|
||||||
|
git = 1,
|
||||||
|
buf = 2,
|
||||||
|
dotfile = 4,
|
||||||
|
custom = 8,
|
||||||
|
bookmark = 16,
|
||||||
}
|
}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
|||||||
@@ -1,95 +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 sorters = require "nvim-tree.explorer.sorters"
|
|
||||||
local filters = require "nvim-tree.explorer.filters"
|
|
||||||
local live_filter = require "nvim-tree.live-filter"
|
|
||||||
local log = require "nvim-tree.log"
|
|
||||||
|
|
||||||
local Watcher = require "nvim-tree.watcher"
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
---@param handle uv.uv_fs_t
|
|
||||||
---@param cwd string
|
|
||||||
---@param node Node
|
|
||||||
---@param git_status table
|
|
||||||
local function populate_children(handle, cwd, node, git_status)
|
|
||||||
local node_ignored = explorer_node.is_git_ignored(node)
|
|
||||||
local nodes_by_path = utils.bool_record(node.nodes, "absolute_path")
|
|
||||||
local filter_status = filters.prepare(git_status)
|
|
||||||
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 }
|
|
||||||
local profile = log.profile_start("explore populate_children %s", abs)
|
|
||||||
|
|
||||||
---@type uv.fs_stat.result|nil
|
|
||||||
local stat = vim.loop.fs_stat(abs)
|
|
||||||
|
|
||||||
if not filters.should_filter(abs, stat, filter_status) and not nodes_by_path[abs] and Watcher.is_fs_event_capable(abs) then
|
|
||||||
local child = nil
|
|
||||||
if t == "directory" and vim.loop.fs_access(abs, "R") then
|
|
||||||
child = builders.folder(node, abs, name, stat)
|
|
||||||
elseif t == "file" then
|
|
||||||
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
|
|
||||||
child = link
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if child then
|
|
||||||
table.insert(node.nodes, child)
|
|
||||||
nodes_by_path[child.absolute_path] = true
|
|
||||||
explorer_node.update_git_status(child, node_ignored, git_status)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
log.profile_end(profile)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node Node
|
|
||||||
---@param status table
|
|
||||||
---@return Node[]|nil
|
|
||||||
function M.explore(node, status)
|
|
||||||
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("explore init %s", node.absolute_path)
|
|
||||||
|
|
||||||
populate_children(handle, cwd, node, status)
|
|
||||||
|
|
||||||
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
|
|
||||||
local child_cwd = child_folder_only.link_to or child_folder_only.absolute_path
|
|
||||||
local child_status = git.load_project_status(child_cwd)
|
|
||||||
node.group_next = child_folder_only
|
|
||||||
local ns = M.explore(child_folder_only, child_status)
|
|
||||||
node.nodes = ns or {}
|
|
||||||
|
|
||||||
log.profile_end(profile)
|
|
||||||
return ns
|
|
||||||
end
|
|
||||||
|
|
||||||
sorters.sort(node.nodes)
|
|
||||||
live_filter.apply_filter(node)
|
|
||||||
|
|
||||||
log.profile_end(profile)
|
|
||||||
return node.nodes
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config = opts.renderer
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,16 +1,53 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local marks = require "nvim-tree.marks"
|
local FILTER_REASON = require("nvim-tree.enum").FILTER_REASON
|
||||||
|
|
||||||
local M = {
|
---@class Filters to handle all opts.filters and related API
|
||||||
|
---@field config table hydrated user opts.filters
|
||||||
|
---@field private explorer Explorer
|
||||||
|
---@field private exclude_list string[] filters.exclude
|
||||||
|
---@field private ignore_list string[] filters.custom string table
|
||||||
|
---@field private custom_function (fun(absolute_path: string): boolean)|nil filters.custom function
|
||||||
|
local Filters = {}
|
||||||
|
|
||||||
|
---@param opts table user options
|
||||||
|
---@param explorer Explorer
|
||||||
|
---@return Filters
|
||||||
|
function Filters:new(opts, explorer)
|
||||||
|
local o = {
|
||||||
|
explorer = explorer,
|
||||||
ignore_list = {},
|
ignore_list = {},
|
||||||
exclude_list = {},
|
exclude_list = opts.filters.exclude,
|
||||||
custom_function = nil,
|
custom_function = nil,
|
||||||
}
|
config = {
|
||||||
|
enable = opts.filters.enable,
|
||||||
|
filter_custom = true,
|
||||||
|
filter_dotfiles = opts.filters.dotfiles,
|
||||||
|
filter_git_ignored = opts.filters.git_ignored,
|
||||||
|
filter_git_clean = opts.filters.git_clean,
|
||||||
|
filter_no_buffer = opts.filters.no_buffer,
|
||||||
|
filter_no_bookmark = opts.filters.no_bookmark,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
local custom_filter = opts.filters.custom
|
||||||
|
if type(custom_filter) == "function" then
|
||||||
|
o.custom_function = custom_filter
|
||||||
|
else
|
||||||
|
if custom_filter and #custom_filter > 0 then
|
||||||
|
for _, filter_name in pairs(custom_filter) do
|
||||||
|
o.ignore_list[filter_name] = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
setmetatable(o, self)
|
||||||
|
self.__index = self
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
---@param path string
|
---@param path string
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function is_excluded(path)
|
local function is_excluded(self, path)
|
||||||
for _, node in ipairs(M.exclude_list) do
|
for _, node in ipairs(self.exclude_list) do
|
||||||
if path:match(node) then
|
if path:match(node) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
@@ -22,7 +59,7 @@ end
|
|||||||
---@param path string Absolute path
|
---@param path string Absolute path
|
||||||
---@param git_status table from prepare
|
---@param git_status table from prepare
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function git(path, git_status)
|
local function git(self, path, git_status)
|
||||||
if type(git_status) ~= "table" or type(git_status.files) ~= "table" or type(git_status.dirs) ~= "table" then
|
if type(git_status) ~= "table" or type(git_status.files) ~= "table" or type(git_status.dirs) ~= "table" then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
@@ -33,12 +70,12 @@ local function git(path, git_status)
|
|||||||
status = status or git_status.dirs.indirect[path] and git_status.dirs.indirect[path][1]
|
status = status or git_status.dirs.indirect[path] and git_status.dirs.indirect[path][1]
|
||||||
|
|
||||||
-- filter ignored; overrides clean as they are effectively dirty
|
-- filter ignored; overrides clean as they are effectively dirty
|
||||||
if M.config.filter_git_ignored and status == "!!" then
|
if self.config.filter_git_ignored and status == "!!" then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
-- filter clean
|
-- filter clean
|
||||||
if M.config.filter_git_clean and not status then
|
if self.config.filter_git_clean and not status then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -49,8 +86,8 @@ end
|
|||||||
---@param path string Absolute path
|
---@param path string Absolute path
|
||||||
---@param bufinfo table vim.fn.getbufinfo { buflisted = 1 }
|
---@param bufinfo table vim.fn.getbufinfo { buflisted = 1 }
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function buf(path, bufinfo)
|
local function buf(self, path, bufinfo)
|
||||||
if not M.config.filter_no_buffer or type(bufinfo) ~= "table" then
|
if not self.config.filter_no_buffer or type(bufinfo) ~= "table" then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -66,15 +103,15 @@ end
|
|||||||
|
|
||||||
---@param path string
|
---@param path string
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function dotfile(path)
|
local function dotfile(self, path)
|
||||||
return M.config.filter_dotfiles and utils.path_basename(path):sub(1, 1) == "."
|
return self.config.filter_dotfiles and utils.path_basename(path):sub(1, 1) == "."
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param path string
|
---@param path string
|
||||||
---@param path_type string|nil filetype of path
|
---@param path_type string|nil filetype of path
|
||||||
---@param bookmarks table<string, string|nil> path, filetype table of bookmarked files
|
---@param bookmarks table<string, string|nil> path, filetype table of bookmarked files
|
||||||
local function bookmark(path, path_type, bookmarks)
|
local function bookmark(self, path, path_type, bookmarks)
|
||||||
if not M.config.filter_no_bookmark then
|
if not self.config.filter_no_bookmark then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
-- if bookmark is empty, we should see a empty filetree
|
-- if bookmark is empty, we should see a empty filetree
|
||||||
@@ -108,29 +145,29 @@ end
|
|||||||
|
|
||||||
---@param path string
|
---@param path string
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function custom(path)
|
local function custom(self, path)
|
||||||
if not M.config.filter_custom then
|
if not self.config.filter_custom then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
local basename = utils.path_basename(path)
|
local basename = utils.path_basename(path)
|
||||||
|
|
||||||
-- filter user's custom function
|
-- filter user's custom function
|
||||||
if M.custom_function and M.custom_function(path) then
|
if self.custom_function and self.custom_function(path) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
-- filter custom regexes
|
-- filter custom regexes
|
||||||
local relpath = utils.path_relative(path, vim.loop.cwd())
|
local relpath = utils.path_relative(path, vim.loop.cwd())
|
||||||
for pat, _ in pairs(M.ignore_list) do
|
for pat, _ in pairs(self.ignore_list) do
|
||||||
if vim.fn.match(relpath, pat) ~= -1 or vim.fn.match(basename, pat) ~= -1 then
|
if vim.fn.match(relpath, pat) ~= -1 or vim.fn.match(basename, pat) ~= -1 then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local idx = path:match ".+()%.[^.]+$"
|
local idx = path:match(".+()%.[^.]+$")
|
||||||
if idx then
|
if idx then
|
||||||
if M.ignore_list["*" .. string.sub(path, idx)] == true then
|
if self.ignore_list["*" .. string.sub(path, idx)] == true then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -144,20 +181,23 @@ end
|
|||||||
--- git_status: reference
|
--- git_status: reference
|
||||||
--- bufinfo: empty unless no_buffer set: vim.fn.getbufinfo { buflisted = 1 }
|
--- bufinfo: empty unless no_buffer set: vim.fn.getbufinfo { buflisted = 1 }
|
||||||
--- bookmarks: absolute paths to boolean
|
--- bookmarks: absolute paths to boolean
|
||||||
function M.prepare(git_status)
|
function Filters:prepare(git_status)
|
||||||
local status = {
|
local status = {
|
||||||
git_status = git_status or {},
|
git_status = git_status or {},
|
||||||
bufinfo = {},
|
bufinfo = {},
|
||||||
bookmarks = {},
|
bookmarks = {},
|
||||||
}
|
}
|
||||||
|
|
||||||
if M.config.filter_no_buffer then
|
if self.config.filter_no_buffer then
|
||||||
status.bufinfo = vim.fn.getbufinfo { buflisted = 1 }
|
status.bufinfo = vim.fn.getbufinfo({ buflisted = 1 })
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, node in pairs(marks.get_marks()) do
|
local explorer = require("nvim-tree.core").get_explorer()
|
||||||
|
if explorer then
|
||||||
|
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
|
||||||
|
|
||||||
return status
|
return status
|
||||||
end
|
end
|
||||||
@@ -167,47 +207,50 @@ end
|
|||||||
---@param fs_stat uv.fs_stat.result|nil fs_stat of file
|
---@param fs_stat uv.fs_stat.result|nil fs_stat of file
|
||||||
---@param status table from prepare
|
---@param status table from prepare
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.should_filter(path, fs_stat, status)
|
function Filters:should_filter(path, fs_stat, status)
|
||||||
if not M.config.enable then
|
if not self.config.enable then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
-- exclusions override all filters
|
-- exclusions override all filters
|
||||||
if is_excluded(path) then
|
if is_excluded(self, path) then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
return git(path, status.git_status)
|
return git(self, path, status.git_status)
|
||||||
or buf(path, status.bufinfo)
|
or buf(self, path, status.bufinfo)
|
||||||
or dotfile(path)
|
or dotfile(self, path)
|
||||||
or custom(path)
|
or custom(self, path)
|
||||||
or bookmark(path, fs_stat and fs_stat.type, status.bookmarks)
|
or bookmark(self, path, fs_stat and fs_stat.type, status.bookmarks)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
--- Check if the given path should be filtered, and provide the reason why it was
|
||||||
M.config = {
|
---@param path string Absolute path
|
||||||
enable = opts.filters.enable,
|
---@param fs_stat uv.fs_stat.result|nil fs_stat of file
|
||||||
filter_custom = true,
|
---@param status table from prepare
|
||||||
filter_dotfiles = opts.filters.dotfiles,
|
---@return FILTER_REASON
|
||||||
filter_git_ignored = opts.filters.git_ignored,
|
function Filters:should_filter_as_reason(path, fs_stat, status)
|
||||||
filter_git_clean = opts.filters.git_clean,
|
if not self.config.enable then
|
||||||
filter_no_buffer = opts.filters.no_buffer,
|
return FILTER_REASON.none
|
||||||
filter_no_bookmark = opts.filters.no_bookmark,
|
end
|
||||||
}
|
|
||||||
|
|
||||||
M.ignore_list = {}
|
if is_excluded(self, path) then
|
||||||
M.exclude_list = opts.filters.exclude
|
return FILTER_REASON.none
|
||||||
|
end
|
||||||
|
|
||||||
local custom_filter = opts.filters.custom
|
if git(self, path, status.git_status) then
|
||||||
if type(custom_filter) == "function" then
|
return FILTER_REASON.git
|
||||||
M.custom_function = custom_filter
|
elseif buf(self, path, status.bufinfo) then
|
||||||
|
return FILTER_REASON.buf
|
||||||
|
elseif dotfile(self, path) then
|
||||||
|
return FILTER_REASON.dotfile
|
||||||
|
elseif custom(self, path) then
|
||||||
|
return FILTER_REASON.custom
|
||||||
|
elseif bookmark(self, path, fs_stat and fs_stat.type, status.bookmarks) then
|
||||||
|
return FILTER_REASON.bookmark
|
||||||
else
|
else
|
||||||
if custom_filter and #custom_filter > 0 then
|
return FILTER_REASON.none
|
||||||
for _, filter_name in pairs(custom_filter) do
|
|
||||||
M.ignore_list[filter_name] = true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return Filters
|
||||||
|
|||||||
@@ -1,24 +1,44 @@
|
|||||||
local git = require "nvim-tree.git"
|
local builders = require("nvim-tree.explorer.node-builders")
|
||||||
local notify = require "nvim-tree.notify"
|
local git = require("nvim-tree.git")
|
||||||
local watch = require "nvim-tree.explorer.watch"
|
local log = require("nvim-tree.log")
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
local notify = require("nvim-tree.notify")
|
||||||
|
local utils = require("nvim-tree.utils")
|
||||||
|
local view = require("nvim-tree.view")
|
||||||
|
local watch = require("nvim-tree.explorer.watch")
|
||||||
|
local explorer_node = require("nvim-tree.explorer.node")
|
||||||
|
|
||||||
local M = {}
|
local Iterator = require("nvim-tree.iterators.node-iterator")
|
||||||
|
local NodeIterator = require("nvim-tree.iterators.node-iterator")
|
||||||
|
local Watcher = require("nvim-tree.watcher")
|
||||||
|
|
||||||
M.explore = require("nvim-tree.explorer.explore").explore
|
local Filters = require("nvim-tree.explorer.filters")
|
||||||
M.reload = require("nvim-tree.explorer.reload").reload
|
local Marks = require("nvim-tree.marks")
|
||||||
|
local LiveFilter = require("nvim-tree.explorer.live-filter")
|
||||||
|
local Sorters = require("nvim-tree.explorer.sorters")
|
||||||
|
local Clipboard = require("nvim-tree.actions.fs.clipboard")
|
||||||
|
local Renderer = require("nvim-tree.renderer")
|
||||||
|
|
||||||
|
local FILTER_REASON = require("nvim-tree.enum").FILTER_REASON
|
||||||
|
|
||||||
|
local config
|
||||||
|
|
||||||
---@class Explorer
|
---@class Explorer
|
||||||
|
---@field opts table user options
|
||||||
---@field absolute_path string
|
---@field absolute_path string
|
||||||
---@field nodes Node[]
|
---@field nodes Node[]
|
||||||
---@field open boolean
|
---@field open boolean
|
||||||
|
---@field watcher Watcher|nil
|
||||||
|
---@field renderer Renderer
|
||||||
|
---@field filters Filters
|
||||||
|
---@field live_filter LiveFilter
|
||||||
|
---@field sorters Sorter
|
||||||
|
---@field marks Marks
|
||||||
|
---@field clipboard Clipboard
|
||||||
local Explorer = {}
|
local Explorer = {}
|
||||||
Explorer.__index = Explorer
|
|
||||||
|
|
||||||
---@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
|
||||||
@@ -31,23 +51,27 @@ function Explorer.new(path)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
---@class Explorer
|
local o = {
|
||||||
local explorer = setmetatable({
|
opts = config,
|
||||||
absolute_path = path,
|
absolute_path = path,
|
||||||
nodes = {},
|
nodes = {},
|
||||||
open = true,
|
open = true,
|
||||||
}, Explorer)
|
sorters = Sorters:new(config),
|
||||||
explorer.watcher = watch.create_watcher(explorer)
|
}
|
||||||
explorer:_load(explorer)
|
|
||||||
return explorer
|
|
||||||
end
|
|
||||||
|
|
||||||
---@private
|
setmetatable(o, self)
|
||||||
---@param node Node
|
self.__index = self
|
||||||
function Explorer:_load(node)
|
|
||||||
local cwd = node.link_to or node.absolute_path
|
o.watcher = watch.create_watcher(o)
|
||||||
local git_status = git.load_project_status(cwd)
|
o.renderer = Renderer:new(config, o)
|
||||||
M.explore(node, git_status)
|
o.filters = Filters:new(config, o)
|
||||||
|
o.live_filter = LiveFilter:new(config, o)
|
||||||
|
o.marks = Marks:new(config, o)
|
||||||
|
o.clipboard = Clipboard:new(config, o)
|
||||||
|
|
||||||
|
o:_load(o)
|
||||||
|
|
||||||
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
@@ -67,15 +91,397 @@ function Explorer:destroy()
|
|||||||
iterate(self)
|
iterate(self)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
---@param node Node
|
||||||
|
---@param git_status table|nil
|
||||||
|
function Explorer:reload(node, git_status)
|
||||||
|
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 = 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_lstat(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 t = 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 ~= 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(
|
||||||
|
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.renderer.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
|
||||||
|
|
||||||
|
---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
|
||||||
|
|
||||||
|
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)
|
||||||
|
self:explore(node, git_status, self)
|
||||||
|
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
|
||||||
|
|
||||||
|
---@private
|
||||||
|
---@param handle uv.uv_fs_t
|
||||||
|
---@param cwd string
|
||||||
|
---@param node Node
|
||||||
|
---@param git_status table
|
||||||
|
---@param parent Explorer
|
||||||
|
function Explorer:populate_children(handle, cwd, node, git_status, parent)
|
||||||
|
local node_ignored = explorer_node.is_git_ignored(node)
|
||||||
|
local nodes_by_path = utils.bool_record(node.nodes, "absolute_path")
|
||||||
|
|
||||||
|
local filter_status = parent.filters:prepare(git_status)
|
||||||
|
|
||||||
|
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 })
|
||||||
|
|
||||||
|
if Watcher.is_fs_event_capable(abs) then
|
||||||
|
local profile = log.profile_start("populate_children %s", abs)
|
||||||
|
|
||||||
|
---@type uv.fs_stat.result|nil
|
||||||
|
local stat = vim.loop.fs_lstat(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] then
|
||||||
|
-- Type must come from fs_stat and not fs_scandir_next to maintain sshfs compatibility
|
||||||
|
local t = stat and stat.type or nil
|
||||||
|
local child = nil
|
||||||
|
if t == "directory" and vim.loop.fs_access(abs, "R") then
|
||||||
|
child = builders.folder(node, abs, name, stat)
|
||||||
|
elseif t == "file" then
|
||||||
|
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
|
||||||
|
child = link
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if child then
|
||||||
|
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
|
||||||
|
|
||||||
|
log.profile_end(profile)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
|
---@param node Node
|
||||||
|
---@param status table
|
||||||
|
---@param parent Explorer
|
||||||
|
---@return Node[]|nil
|
||||||
|
function Explorer:explore(node, status, parent)
|
||||||
|
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("explore %s", node.absolute_path)
|
||||||
|
|
||||||
|
self:populate_children(handle, cwd, node, status, parent)
|
||||||
|
|
||||||
|
local is_root = not node.parent
|
||||||
|
local child_folder_only = explorer_node.has_one_child_folder(node) and node.nodes[1]
|
||||||
|
if config.renderer.group_empty and not is_root and child_folder_only then
|
||||||
|
local child_cwd = child_folder_only.link_to or child_folder_only.absolute_path
|
||||||
|
local child_status = git.load_project_status(child_cwd)
|
||||||
|
node.group_next = child_folder_only
|
||||||
|
local ns = self:explore(child_folder_only, child_status, parent)
|
||||||
|
node.nodes = ns or {}
|
||||||
|
|
||||||
|
log.profile_end(profile)
|
||||||
|
return ns
|
||||||
|
end
|
||||||
|
|
||||||
|
parent.sorters:sort(node.nodes)
|
||||||
|
parent.live_filter:apply_filter(node)
|
||||||
|
|
||||||
|
log.profile_end(profile)
|
||||||
|
return node.nodes
|
||||||
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
|
---@param projects table
|
||||||
|
function Explorer:refresh_nodes(projects)
|
||||||
|
Iterator.builder({ self })
|
||||||
|
:applier(function(n)
|
||||||
|
if n.nodes then
|
||||||
|
local toplevel = git.get_toplevel(n.cwd or n.link_to or n.absolute_path)
|
||||||
|
self:reload(n, projects[toplevel] or {})
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
:recursor(function(n)
|
||||||
|
return n.group_next and { n.group_next } or (n.open and n.nodes)
|
||||||
|
end)
|
||||||
|
:iterate()
|
||||||
|
end
|
||||||
|
|
||||||
|
local event_running = false
|
||||||
|
function Explorer:reload_explorer()
|
||||||
|
if event_running or vim.v.exiting ~= vim.NIL then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
event_running = true
|
||||||
|
|
||||||
|
local projects = git.reload()
|
||||||
|
self:refresh_nodes(projects)
|
||||||
|
if view.is_visible() then
|
||||||
|
self.renderer:draw()
|
||||||
|
end
|
||||||
|
event_running = false
|
||||||
|
end
|
||||||
|
|
||||||
|
function Explorer:reload_git()
|
||||||
|
if not git.config.git.enable or event_running then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
event_running = true
|
||||||
|
|
||||||
|
local projects = git.reload()
|
||||||
|
explorer_node.reload_node_status(self, projects)
|
||||||
|
self.renderer:draw()
|
||||||
|
event_running = false
|
||||||
|
end
|
||||||
|
|
||||||
|
function Explorer.setup(opts)
|
||||||
|
config = opts
|
||||||
require("nvim-tree.explorer.node").setup(opts)
|
require("nvim-tree.explorer.node").setup(opts)
|
||||||
require("nvim-tree.explorer.explore").setup(opts)
|
|
||||||
require("nvim-tree.explorer.filters").setup(opts)
|
|
||||||
require("nvim-tree.explorer.sorters").setup(opts)
|
|
||||||
require("nvim-tree.explorer.reload").setup(opts)
|
|
||||||
require("nvim-tree.explorer.watch").setup(opts)
|
require("nvim-tree.explorer.watch").setup(opts)
|
||||||
end
|
end
|
||||||
|
|
||||||
M.Explorer = Explorer
|
return Explorer
|
||||||
|
|
||||||
return M
|
|
||||||
|
|||||||
@@ -1,28 +1,47 @@
|
|||||||
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 Iterator = require "nvim-tree.iterators.node-iterator"
|
local Iterator = require("nvim-tree.iterators.node-iterator")
|
||||||
local filters = require "nvim-tree.explorer.filters"
|
|
||||||
|
|
||||||
local M = {
|
---@class LiveFilter
|
||||||
|
---@field explorer Explorer
|
||||||
|
---@field prefix string
|
||||||
|
---@field always_show_folders boolean
|
||||||
|
---@field filter string
|
||||||
|
local LiveFilter = {}
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
|
function LiveFilter:new(opts, explorer)
|
||||||
|
local o = {
|
||||||
|
explorer = explorer,
|
||||||
|
prefix = opts.live_filter.prefix,
|
||||||
|
always_show_folders = opts.live_filter.always_show_folders,
|
||||||
filter = nil,
|
filter = nil,
|
||||||
}
|
}
|
||||||
|
setmetatable(o, self)
|
||||||
local function redraw()
|
self.__index = self
|
||||||
require("nvim-tree.renderer").draw()
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node_ Node|nil
|
---@param node_ Node|nil
|
||||||
local function reset_filter(node_)
|
local function reset_filter(self, node_)
|
||||||
node_ = node_ or require("nvim-tree.core").get_explorer()
|
node_ = node_ or self.explorer
|
||||||
|
|
||||||
if node_ == nil then
|
if node_ == nil then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
node_.hidden_stats = vim.tbl_deep_extend("force", node_.hidden_stats or {}, {
|
||||||
|
live_filter = 0,
|
||||||
|
})
|
||||||
|
|
||||||
Iterator.builder(node_.nodes)
|
Iterator.builder(node_.nodes)
|
||||||
:hidden()
|
:hidden()
|
||||||
:applier(function(node)
|
:applier(function(node)
|
||||||
node.hidden = false
|
node.hidden = false
|
||||||
|
node.hidden_stats = vim.tbl_deep_extend("force", node.hidden_stats or {}, {
|
||||||
|
live_filter = 0,
|
||||||
|
})
|
||||||
end)
|
end)
|
||||||
:iterate()
|
:iterate()
|
||||||
end
|
end
|
||||||
@@ -30,7 +49,7 @@ end
|
|||||||
local overlay_bufnr = 0
|
local overlay_bufnr = 0
|
||||||
local overlay_winnr = 0
|
local overlay_winnr = 0
|
||||||
|
|
||||||
local function remove_overlay()
|
local function remove_overlay(self)
|
||||||
if view.View.float.enable and view.View.float.quit_on_focus_loss then
|
if view.View.float.enable and view.View.float.quit_on_focus_loss then
|
||||||
-- return to normal nvim-tree float behaviour when filter window is closed
|
-- return to normal nvim-tree float behaviour when filter window is closed
|
||||||
vim.api.nvim_create_autocmd("WinLeave", {
|
vim.api.nvim_create_autocmd("WinLeave", {
|
||||||
@@ -49,27 +68,27 @@ local function remove_overlay()
|
|||||||
overlay_bufnr = 0
|
overlay_bufnr = 0
|
||||||
overlay_winnr = 0
|
overlay_winnr = 0
|
||||||
|
|
||||||
if M.filter == "" then
|
if self.filter == "" then
|
||||||
M.clear_filter()
|
self:clear_filter()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function matches(node)
|
local function matches(self, node)
|
||||||
if not filters.config.enable then
|
if not self.explorer.filters.config.enable then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
local path = node.absolute_path
|
local path = node.absolute_path
|
||||||
local name = vim.fn.fnamemodify(path, ":t")
|
local name = vim.fn.fnamemodify(path, ":t")
|
||||||
return vim.regex(M.filter):match_str(name) ~= nil
|
return vim.regex(self.filter):match_str(name) ~= nil
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node_ Node|nil
|
---@param node_ Node|nil
|
||||||
function M.apply_filter(node_)
|
function LiveFilter:apply_filter(node_)
|
||||||
if not M.filter or M.filter == "" then
|
if not self.filter or self.filter == "" then
|
||||||
reset_filter(node_)
|
reset_filter(self, node_)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -79,6 +98,10 @@ function M.apply_filter(node_)
|
|||||||
local filtered_nodes = 0
|
local filtered_nodes = 0
|
||||||
local nodes = node.group_next and { node.group_next } or node.nodes
|
local nodes = node.group_next and { node.group_next } or node.nodes
|
||||||
|
|
||||||
|
node.hidden_stats = vim.tbl_deep_extend("force", node.hidden_stats or {}, {
|
||||||
|
live_filter = 0,
|
||||||
|
})
|
||||||
|
|
||||||
if nodes then
|
if nodes then
|
||||||
for _, n in pairs(nodes) do
|
for _, n in pairs(nodes) do
|
||||||
iterate(n)
|
iterate(n)
|
||||||
@@ -88,31 +111,37 @@ function M.apply_filter(node_)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local has_nodes = nodes and (M.always_show_folders or #nodes > filtered_nodes)
|
node.hidden_stats.live_filter = filtered_nodes
|
||||||
local ok, is_match = pcall(matches, node)
|
|
||||||
|
local has_nodes = nodes and (self.always_show_folders or #nodes > filtered_nodes)
|
||||||
|
local ok, is_match = pcall(matches, self, node)
|
||||||
node.hidden = not (has_nodes or (ok and is_match))
|
node.hidden = not (has_nodes or (ok and is_match))
|
||||||
end
|
end
|
||||||
|
|
||||||
iterate(node_ or require("nvim-tree.core").get_explorer())
|
iterate(node_ or self.explorer)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function record_char()
|
local function record_char(self)
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
M.filter = vim.api.nvim_buf_get_lines(overlay_bufnr, 0, -1, false)[1]
|
self.filter = vim.api.nvim_buf_get_lines(overlay_bufnr, 0, -1, false)[1]
|
||||||
M.apply_filter()
|
self:apply_filter()
|
||||||
redraw()
|
self.explorer.renderer:draw()
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function configure_buffer_overlay()
|
local function configure_buffer_overlay(self)
|
||||||
overlay_bufnr = vim.api.nvim_create_buf(false, true)
|
overlay_bufnr = vim.api.nvim_create_buf(false, true)
|
||||||
|
|
||||||
vim.api.nvim_buf_attach(overlay_bufnr, true, {
|
vim.api.nvim_buf_attach(overlay_bufnr, true, {
|
||||||
on_lines = record_char,
|
on_lines = function()
|
||||||
|
return record_char(self)
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("InsertLeave", {
|
vim.api.nvim_create_autocmd("InsertLeave", {
|
||||||
callback = remove_overlay,
|
callback = function()
|
||||||
|
return remove_overlay(self)
|
||||||
|
end,
|
||||||
once = true,
|
once = true,
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -120,67 +149,69 @@ local function configure_buffer_overlay()
|
|||||||
end
|
end
|
||||||
|
|
||||||
---@return integer
|
---@return integer
|
||||||
local function calculate_overlay_win_width()
|
local function calculate_overlay_win_width(self)
|
||||||
local wininfo = vim.fn.getwininfo(view.get_winnr())[1]
|
local wininfo = vim.fn.getwininfo(view.get_winnr())[1]
|
||||||
|
|
||||||
if wininfo then
|
if wininfo then
|
||||||
return wininfo.width - wininfo.textoff - #M.prefix
|
return wininfo.width - wininfo.textoff - #self.prefix
|
||||||
end
|
end
|
||||||
|
|
||||||
return 20
|
return 20
|
||||||
end
|
end
|
||||||
|
|
||||||
local function create_overlay()
|
local function create_overlay(self)
|
||||||
if view.View.float.enable then
|
if view.View.float.enable then
|
||||||
-- don't close nvim-tree float when focus is changed to filter window
|
-- don't close nvim-tree float when focus is changed to filter window
|
||||||
vim.api.nvim_clear_autocmds {
|
vim.api.nvim_clear_autocmds({
|
||||||
event = "WinLeave",
|
event = "WinLeave",
|
||||||
pattern = "NvimTree_*",
|
pattern = "NvimTree_*",
|
||||||
group = vim.api.nvim_create_augroup("NvimTree", { clear = false }),
|
group = vim.api.nvim_create_augroup("NvimTree", { clear = false }),
|
||||||
}
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
configure_buffer_overlay()
|
configure_buffer_overlay(self)
|
||||||
overlay_winnr = vim.api.nvim_open_win(overlay_bufnr, true, {
|
overlay_winnr = vim.api.nvim_open_win(overlay_bufnr, true, {
|
||||||
col = 1,
|
col = 1,
|
||||||
row = 0,
|
row = 0,
|
||||||
relative = "cursor",
|
relative = "cursor",
|
||||||
width = calculate_overlay_win_width(),
|
width = calculate_overlay_win_width(self),
|
||||||
height = 1,
|
height = 1,
|
||||||
border = "none",
|
border = "none",
|
||||||
style = "minimal",
|
style = "minimal",
|
||||||
})
|
})
|
||||||
|
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("modifiable", true, { buf = overlay_bufnr })
|
vim.api.nvim_set_option_value("modifiable", true, { buf = overlay_bufnr })
|
||||||
else
|
else
|
||||||
vim.api.nvim_buf_set_option(overlay_bufnr, "modifiable", true) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_buf_set_option(overlay_bufnr, "modifiable", true) ---@diagnostic disable-line: deprecated
|
||||||
end
|
end
|
||||||
|
|
||||||
vim.api.nvim_buf_set_lines(overlay_bufnr, 0, -1, false, { M.filter })
|
vim.api.nvim_buf_set_lines(overlay_bufnr, 0, -1, false, { self.filter })
|
||||||
vim.cmd "startinsert"
|
vim.cmd("startinsert")
|
||||||
vim.api.nvim_win_set_cursor(overlay_winnr, { 1, #M.filter + 1 })
|
vim.api.nvim_win_set_cursor(overlay_winnr, { 1, #self.filter + 1 })
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.start_filtering()
|
function LiveFilter:start_filtering()
|
||||||
view.View.live_filter.prev_focused_node = require("nvim-tree.lib").get_node_at_cursor()
|
view.View.live_filter.prev_focused_node = require("nvim-tree.lib").get_node_at_cursor()
|
||||||
M.filter = M.filter or ""
|
self.filter = self.filter or ""
|
||||||
|
|
||||||
redraw()
|
self.explorer.renderer:draw()
|
||||||
local row = require("nvim-tree.core").get_nodes_starting_line() - 1
|
local row = require("nvim-tree.core").get_nodes_starting_line() - 1
|
||||||
local col = #M.prefix > 0 and #M.prefix - 1 or 1
|
local col = #self.prefix > 0 and #self.prefix - 1 or 1
|
||||||
view.set_cursor { row, col }
|
view.set_cursor({ row, col })
|
||||||
-- needs scheduling to let the cursor move before initializing the window
|
-- needs scheduling to let the cursor move before initializing the window
|
||||||
vim.schedule(create_overlay)
|
vim.schedule(function()
|
||||||
|
return create_overlay(self)
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.clear_filter()
|
function LiveFilter:clear_filter()
|
||||||
local node = require("nvim-tree.lib").get_node_at_cursor()
|
local node = require("nvim-tree.lib").get_node_at_cursor()
|
||||||
local last_node = view.View.live_filter.prev_focused_node
|
local last_node = view.View.live_filter.prev_focused_node
|
||||||
|
|
||||||
M.filter = nil
|
self.filter = nil
|
||||||
reset_filter()
|
reset_filter(self)
|
||||||
redraw()
|
self.explorer.renderer:draw()
|
||||||
|
|
||||||
if node then
|
if node then
|
||||||
utils.focus_file(node.absolute_path)
|
utils.focus_file(node.absolute_path)
|
||||||
@@ -189,9 +220,4 @@ function M.clear_filter()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
return LiveFilter
|
||||||
M.prefix = opts.live_filter.prefix
|
|
||||||
M.always_show_folders = opts.live_filter.always_show_folders
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local watch = require "nvim-tree.explorer.watch"
|
local watch = require("nvim-tree.explorer.watch")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
local git = {} -- circular dependencies
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---@class GitStatus
|
---@class GitStatus
|
||||||
@@ -122,12 +124,42 @@ function M.get_git_status(node)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@param parent_node Node|nil
|
||||||
|
---@param projects table
|
||||||
|
function M.reload_node_status(parent_node, projects)
|
||||||
|
if parent_node == nil then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local toplevel = git.get_toplevel(parent_node.absolute_path)
|
||||||
|
local status = projects[toplevel] or {}
|
||||||
|
for _, node in ipairs(parent_node.nodes) do
|
||||||
|
M.update_git_status(node, M.is_git_ignored(parent_node), status)
|
||||||
|
if node.nodes and #node.nodes > 0 then
|
||||||
|
M.reload_node_status(node, projects)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.is_git_ignored(node)
|
function M.is_git_ignored(node)
|
||||||
return node and node.git_status ~= nil and node.git_status.file == "!!"
|
return node and node.git_status ~= nil and node.git_status.file == "!!"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@param node Node
|
||||||
|
---@return boolean
|
||||||
|
function M.is_dotfile(node)
|
||||||
|
if node == nil then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
if node.is_dot or (node.name and (node.name:sub(1, 1) == ".")) or M.is_dotfile(node.parent) then
|
||||||
|
node.is_dot = true
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.node_destroy(node)
|
function M.node_destroy(node)
|
||||||
if not node then
|
if not node then
|
||||||
@@ -144,6 +176,8 @@ function M.setup(opts)
|
|||||||
M.config = {
|
M.config = {
|
||||||
git = opts.git,
|
git = opts.git,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
git = require("nvim-tree.git")
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,232 +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 filters = require "nvim-tree.explorer.filters"
|
|
||||||
local sorters = require "nvim-tree.explorer.sorters"
|
|
||||||
local live_filter = require "nvim-tree.live-filter"
|
|
||||||
local git = require "nvim-tree.git"
|
|
||||||
local log = require "nvim-tree.log"
|
|
||||||
|
|
||||||
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 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 = 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")
|
|
||||||
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)
|
|
||||||
|
|
||||||
if not filters.should_filter(abs, stat, filter_status) 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
|
|
||||||
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
|
|
||||||
|
|
||||||
sorters.sort(node.nodes)
|
|
||||||
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
|
|
||||||
@@ -1,12 +1,27 @@
|
|||||||
local M = {}
|
|
||||||
|
|
||||||
local C = {}
|
local C = {}
|
||||||
|
|
||||||
|
---@class Sorter
|
||||||
|
local Sorter = {}
|
||||||
|
|
||||||
|
function Sorter:new(opts)
|
||||||
|
local o = {}
|
||||||
|
setmetatable(o, self)
|
||||||
|
self.__index = self
|
||||||
|
o.config = vim.deepcopy(opts.sort)
|
||||||
|
|
||||||
|
if type(o.config.sorter) == "function" then
|
||||||
|
o.user = o.config.sorter
|
||||||
|
end
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
--- Predefined comparator, defaulting to name
|
--- Predefined comparator, defaulting to name
|
||||||
---@param sorter string as per options
|
---@param sorter string as per options
|
||||||
---@return function
|
---@return function
|
||||||
local function get_comparator(sorter)
|
function Sorter:get_comparator(sorter)
|
||||||
return C[sorter] or C.name
|
return function(a, b)
|
||||||
|
return (C[sorter] or C.name)(a, b, self.config)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---Create a shallow copy of a portion of a list.
|
---Create a shallow copy of a portion of a list.
|
||||||
@@ -27,17 +42,17 @@ end
|
|||||||
---@param a Node
|
---@param a Node
|
||||||
---@param b Node
|
---@param b Node
|
||||||
---@return boolean|nil
|
---@return boolean|nil
|
||||||
local function folders_or_files_first(a, b)
|
local function folders_or_files_first(a, b, cfg)
|
||||||
if not (M.config.sort.folders_first or M.config.sort.files_first) then
|
if not (cfg.folders_first or cfg.files_first) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if not a.nodes and b.nodes then
|
if not a.nodes and b.nodes then
|
||||||
-- file <> folder
|
-- file <> folder
|
||||||
return M.config.sort.files_first
|
return cfg.files_first
|
||||||
elseif a.nodes and not b.nodes then
|
elseif a.nodes and not b.nodes then
|
||||||
-- folder <> file
|
-- folder <> file
|
||||||
return not M.config.sort.files_first
|
return not cfg.files_first
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -97,8 +112,8 @@ end
|
|||||||
|
|
||||||
---Perform a merge sort using sorter option.
|
---Perform a merge sort using sorter option.
|
||||||
---@param t table nodes
|
---@param t table nodes
|
||||||
function M.sort(t)
|
function Sorter:sort(t)
|
||||||
if C.user then
|
if self.user then
|
||||||
local t_user = {}
|
local t_user = {}
|
||||||
local origin_index = {}
|
local origin_index = {}
|
||||||
|
|
||||||
@@ -107,7 +122,7 @@ function M.sort(t)
|
|||||||
absolute_path = n.absolute_path,
|
absolute_path = n.absolute_path,
|
||||||
executable = n.executable,
|
executable = n.executable,
|
||||||
extension = n.extension,
|
extension = n.extension,
|
||||||
filetype = vim.filetype.match { filename = n.name },
|
filetype = vim.filetype.match({ filename = n.name }),
|
||||||
link_to = n.link_to,
|
link_to = n.link_to,
|
||||||
name = n.name,
|
name = n.name,
|
||||||
type = n.type,
|
type = n.type,
|
||||||
@@ -115,9 +130,9 @@ function M.sort(t)
|
|||||||
table.insert(origin_index, n)
|
table.insert(origin_index, n)
|
||||||
end
|
end
|
||||||
|
|
||||||
local predefined = C.user(t_user)
|
local predefined = self.user(t_user)
|
||||||
if predefined then
|
if predefined then
|
||||||
split_merge(t, 1, #t, get_comparator(predefined))
|
split_merge(t, 1, #t, self:get_comparator(predefined))
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -142,7 +157,7 @@ function M.sort(t)
|
|||||||
|
|
||||||
split_merge(t, 1, #t, mini_comparator) -- sort by user order
|
split_merge(t, 1, #t, mini_comparator) -- sort by user order
|
||||||
else
|
else
|
||||||
split_merge(t, 1, #t, get_comparator(M.config.sort.sorter))
|
split_merge(t, 1, #t, self:get_comparator(self.config.sorter))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -150,12 +165,12 @@ end
|
|||||||
---@param b Node
|
---@param b Node
|
||||||
---@param ignorecase boolean|nil
|
---@param ignorecase boolean|nil
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function node_comparator_name_ignorecase_or_not(a, b, ignorecase)
|
local function node_comparator_name_ignorecase_or_not(a, b, ignorecase, cfg)
|
||||||
if not (a and b) then
|
if not (a and b) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
local early_return = folders_or_files_first(a, b)
|
local early_return = folders_or_files_first(a, b, cfg)
|
||||||
if early_return ~= nil then
|
if early_return ~= nil then
|
||||||
return early_return
|
return early_return
|
||||||
end
|
end
|
||||||
@@ -167,20 +182,20 @@ local function node_comparator_name_ignorecase_or_not(a, b, ignorecase)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function C.case_sensitive(a, b)
|
function C.case_sensitive(a, b, cfg)
|
||||||
return node_comparator_name_ignorecase_or_not(a, b, false)
|
return node_comparator_name_ignorecase_or_not(a, b, false, cfg)
|
||||||
end
|
end
|
||||||
|
|
||||||
function C.name(a, b)
|
function C.name(a, b, cfg)
|
||||||
return node_comparator_name_ignorecase_or_not(a, b, true)
|
return node_comparator_name_ignorecase_or_not(a, b, true, cfg)
|
||||||
end
|
end
|
||||||
|
|
||||||
function C.modification_time(a, b)
|
function C.modification_time(a, b, cfg)
|
||||||
if not (a and b) then
|
if not (a and b) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
local early_return = folders_or_files_first(a, b)
|
local early_return = folders_or_files_first(a, b, cfg)
|
||||||
if early_return ~= nil then
|
if early_return ~= nil then
|
||||||
return early_return
|
return early_return
|
||||||
end
|
end
|
||||||
@@ -199,17 +214,17 @@ function C.modification_time(a, b)
|
|||||||
return last_modified_b <= last_modified_a
|
return last_modified_b <= last_modified_a
|
||||||
end
|
end
|
||||||
|
|
||||||
function C.suffix(a, b)
|
function C.suffix(a, b, cfg)
|
||||||
if not (a and b) then
|
if not (a and b) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
-- directories go first
|
-- directories go first
|
||||||
local early_return = folders_or_files_first(a, b)
|
local early_return = folders_or_files_first(a, b, cfg)
|
||||||
if early_return ~= nil then
|
if early_return ~= nil then
|
||||||
return early_return
|
return early_return
|
||||||
elseif a.nodes and b.nodes then
|
elseif a.nodes and b.nodes then
|
||||||
return C.name(a, b)
|
return C.name(a, b, cfg)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- dotfiles go second
|
-- dotfiles go second
|
||||||
@@ -218,19 +233,19 @@ function C.suffix(a, b)
|
|||||||
elseif a.name:sub(1, 1) ~= "." and b.name:sub(1, 1) == "." then
|
elseif a.name:sub(1, 1) ~= "." and b.name:sub(1, 1) == "." then
|
||||||
return false
|
return false
|
||||||
elseif a.name:sub(1, 1) == "." and b.name:sub(1, 1) == "." then
|
elseif a.name:sub(1, 1) == "." and b.name:sub(1, 1) == "." then
|
||||||
return C.name(a, b)
|
return C.name(a, b, cfg)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- unsuffixed go third
|
-- unsuffixed go third
|
||||||
local a_suffix_ndx = a.name:find "%.%w+$"
|
local a_suffix_ndx = a.name:find("%.%w+$")
|
||||||
local b_suffix_ndx = b.name:find "%.%w+$"
|
local b_suffix_ndx = b.name:find("%.%w+$")
|
||||||
|
|
||||||
if not a_suffix_ndx and b_suffix_ndx then
|
if not a_suffix_ndx and b_suffix_ndx then
|
||||||
return true
|
return true
|
||||||
elseif a_suffix_ndx and not b_suffix_ndx then
|
elseif a_suffix_ndx and not b_suffix_ndx then
|
||||||
return false
|
return false
|
||||||
elseif not (a_suffix_ndx and b_suffix_ndx) then
|
elseif not (a_suffix_ndx and b_suffix_ndx) then
|
||||||
return C.name(a, b)
|
return C.name(a, b, cfg)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- finally, compare by suffixes
|
-- finally, compare by suffixes
|
||||||
@@ -242,18 +257,18 @@ function C.suffix(a, b)
|
|||||||
elseif not a_suffix and b_suffix then
|
elseif not a_suffix and b_suffix then
|
||||||
return false
|
return false
|
||||||
elseif a_suffix:lower() == b_suffix:lower() then
|
elseif a_suffix:lower() == b_suffix:lower() then
|
||||||
return C.name(a, b)
|
return C.name(a, b, cfg)
|
||||||
end
|
end
|
||||||
|
|
||||||
return a_suffix:lower() < b_suffix:lower()
|
return a_suffix:lower() < b_suffix:lower()
|
||||||
end
|
end
|
||||||
|
|
||||||
function C.extension(a, b)
|
function C.extension(a, b, cfg)
|
||||||
if not (a and b) then
|
if not (a and b) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
local early_return = folders_or_files_first(a, b)
|
local early_return = folders_or_files_first(a, b, cfg)
|
||||||
if early_return ~= nil then
|
if early_return ~= nil then
|
||||||
return early_return
|
return early_return
|
||||||
end
|
end
|
||||||
@@ -267,18 +282,18 @@ function C.extension(a, b)
|
|||||||
local a_ext = (a.extension or ""):lower()
|
local a_ext = (a.extension or ""):lower()
|
||||||
local b_ext = (b.extension or ""):lower()
|
local b_ext = (b.extension or ""):lower()
|
||||||
if a_ext == b_ext then
|
if a_ext == b_ext then
|
||||||
return C.name(a, b)
|
return C.name(a, b, cfg)
|
||||||
end
|
end
|
||||||
|
|
||||||
return a_ext < b_ext
|
return a_ext < b_ext
|
||||||
end
|
end
|
||||||
|
|
||||||
function C.filetype(a, b)
|
function C.filetype(a, b, cfg)
|
||||||
local a_ft = vim.filetype.match { filename = a.name }
|
local a_ft = vim.filetype.match({ filename = a.name })
|
||||||
local b_ft = vim.filetype.match { filename = b.name }
|
local b_ft = vim.filetype.match({ filename = b.name })
|
||||||
|
|
||||||
-- directories first
|
-- directories first
|
||||||
local early_return = folders_or_files_first(a, b)
|
local early_return = folders_or_files_first(a, b, cfg)
|
||||||
if early_return ~= nil then
|
if early_return ~= nil then
|
||||||
return early_return
|
return early_return
|
||||||
end
|
end
|
||||||
@@ -292,19 +307,10 @@ function C.filetype(a, b)
|
|||||||
|
|
||||||
-- same filetype or both nil, sort by name
|
-- same filetype or both nil, sort by name
|
||||||
if a_ft == b_ft then
|
if a_ft == b_ft then
|
||||||
return C.name(a, b)
|
return C.name(a, b, cfg)
|
||||||
end
|
end
|
||||||
|
|
||||||
return a_ft < b_ft
|
return a_ft < b_ft
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
return Sorter
|
||||||
M.config = {}
|
|
||||||
M.config.sort = opts.sort
|
|
||||||
|
|
||||||
if type(M.config.sort.sorter) == "function" then
|
|
||||||
C.user = M.config.sort.sorter
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local Watcher = require("nvim-tree.watcher").Watcher
|
local Watcher = require("nvim-tree.watcher").Watcher
|
||||||
|
|
||||||
local M = {
|
local 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
|
||||||
|
explorer:refresh_node(node, function()
|
||||||
|
explorer.renderer:draw()
|
||||||
end)
|
end)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local git_utils = require "nvim-tree.git.utils"
|
local git_utils = require("nvim-tree.git.utils")
|
||||||
local Runner = require "nvim-tree.git.runner"
|
local Runner = require("nvim-tree.git.runner")
|
||||||
local Watcher = require("nvim-tree.watcher").Watcher
|
local Watcher = require("nvim-tree.watcher").Watcher
|
||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
local Iterator = require("nvim-tree.iterators.node-iterator")
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
local explorer_node = require("nvim-tree.explorer.node")
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
config = {},
|
config = {},
|
||||||
@@ -216,7 +216,10 @@ local function reload_tree_at(toplevel)
|
|||||||
end)
|
end)
|
||||||
:iterate()
|
:iterate()
|
||||||
|
|
||||||
require("nvim-tree.renderer").draw()
|
local explorer = require("nvim-tree.core").get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -240,12 +243,12 @@ function M.load_project_status(path)
|
|||||||
return status
|
return status
|
||||||
end
|
end
|
||||||
|
|
||||||
local git_status = Runner.run {
|
local git_status = Runner.run({
|
||||||
toplevel = toplevel,
|
toplevel = toplevel,
|
||||||
list_untracked = git_utils.should_show_untracked(toplevel),
|
list_untracked = git_utils.should_show_untracked(toplevel),
|
||||||
list_ignored = true,
|
list_ignored = true,
|
||||||
timeout = M.config.git.timeout,
|
timeout = M.config.git.timeout,
|
||||||
}
|
})
|
||||||
|
|
||||||
local watcher = nil
|
local watcher = nil
|
||||||
if M.config.filesystem_watchers.enable then
|
if M.config.filesystem_watchers.enable then
|
||||||
@@ -261,7 +264,7 @@ function M.load_project_status(path)
|
|||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
local git_dir = vim.env.GIT_DIR or M._git_dirs_by_toplevel[toplevel] or utils.path_join { toplevel, ".git" }
|
local git_dir = vim.env.GIT_DIR or M._git_dirs_by_toplevel[toplevel] or utils.path_join({ toplevel, ".git" })
|
||||||
watcher = Watcher:new(git_dir, WATCHED_FILES, callback, {
|
watcher = Watcher:new(git_dir, WATCHED_FILES, callback, {
|
||||||
toplevel = toplevel,
|
toplevel = toplevel,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
---@class Runner
|
---@class Runner
|
||||||
local Runner = {}
|
local Runner = {}
|
||||||
@@ -18,11 +18,11 @@ function Runner:_parse_status_output(status, path)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- replacing slashes if on windows
|
-- replacing slashes if on windows
|
||||||
if vim.fn.has "win32" == 1 then
|
if vim.fn.has("win32") == 1 then
|
||||||
path = path:gsub("/", "\\")
|
path = path:gsub("/", "\\")
|
||||||
end
|
end
|
||||||
if #status > 0 and #path > 0 then
|
if #status > 0 and #path > 0 then
|
||||||
self.output[utils.path_remove_trailing(utils.path_join { self.toplevel, path })] = status
|
self.output[utils.path_remove_trailing(utils.path_join({ self.toplevel, path }))] = status
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -35,7 +35,7 @@ function Runner:_handle_incoming_data(prev_output, incoming)
|
|||||||
local prev = prev_output .. incoming
|
local prev = prev_output .. incoming
|
||||||
local i = 1
|
local i = 1
|
||||||
local skip_next_line = false
|
local skip_next_line = false
|
||||||
for line in prev:gmatch "[^\n]*\n" do
|
for line in prev:gmatch("[^\n]*\n") do
|
||||||
if skip_next_line then
|
if skip_next_line then
|
||||||
skip_next_line = false
|
skip_next_line = false
|
||||||
else
|
else
|
||||||
@@ -57,7 +57,7 @@ function Runner:_handle_incoming_data(prev_output, incoming)
|
|||||||
return prev_output .. incoming
|
return prev_output .. incoming
|
||||||
end
|
end
|
||||||
|
|
||||||
for line in prev_output:gmatch "[^\n]*\n" do
|
for line in prev_output:gmatch("[^\n]*\n") do
|
||||||
self:_parse_status_output(line)
|
self:_parse_status_output(line)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -79,7 +79,7 @@ end
|
|||||||
|
|
||||||
---@param output string
|
---@param output string
|
||||||
function Runner:_log_raw_output(output)
|
function Runner:_log_raw_output(output)
|
||||||
if log.enabled "git" and output and type(output) == "string" then
|
if log.enabled("git") and output and type(output) == "string" then
|
||||||
log.raw("git", "%s", output)
|
log.raw("git", "%s", output)
|
||||||
log.line("git", "done")
|
log.line("git", "done")
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
use_cygpath = false,
|
use_cygpath = false,
|
||||||
@@ -21,30 +21,30 @@ function M.get_toplevel(cwd)
|
|||||||
log.raw("git", out)
|
log.raw("git", out)
|
||||||
log.profile_end(profile)
|
log.profile_end(profile)
|
||||||
|
|
||||||
if vim.v.shell_error ~= 0 or not out or #out == 0 or out:match "fatal" then
|
if vim.v.shell_error ~= 0 or not out or #out == 0 or out:match("fatal") then
|
||||||
return nil, nil
|
return nil, nil
|
||||||
end
|
end
|
||||||
|
|
||||||
local toplevel, git_dir = out:match "([^\n]+)\n+([^\n]+)"
|
local toplevel, git_dir = out:match("([^\n]+)\n+([^\n]+)")
|
||||||
if not toplevel then
|
if not toplevel then
|
||||||
return nil, nil
|
return nil, nil
|
||||||
end
|
end
|
||||||
if not git_dir then
|
if not git_dir then
|
||||||
git_dir = utils.path_join { toplevel, ".git" }
|
git_dir = utils.path_join({ toplevel, ".git" })
|
||||||
end
|
end
|
||||||
|
|
||||||
-- git always returns path with forward slashes
|
-- git always returns path with forward slashes
|
||||||
if vim.fn.has "win32" == 1 then
|
if vim.fn.has("win32") == 1 then
|
||||||
-- msys2 git support
|
-- msys2 git support
|
||||||
-- cygpath calls must in array format to avoid shell compatibility issues
|
-- cygpath calls must in array format to avoid shell compatibility issues
|
||||||
if M.use_cygpath then
|
if M.use_cygpath then
|
||||||
toplevel = vim.fn.system { "cygpath", "-w", toplevel }
|
toplevel = vim.fn.system({ "cygpath", "-w", toplevel })
|
||||||
if vim.v.shell_error ~= 0 then
|
if vim.v.shell_error ~= 0 then
|
||||||
return nil, nil
|
return nil, nil
|
||||||
end
|
end
|
||||||
-- remove trailing newline(\n) character added by vim.fn.system
|
-- remove trailing newline(\n) character added by vim.fn.system
|
||||||
toplevel = toplevel:gsub("\n", "")
|
toplevel = toplevel:gsub("\n", "")
|
||||||
git_dir = vim.fn.system { "cygpath", "-w", git_dir }
|
git_dir = vim.fn.system({ "cygpath", "-w", git_dir })
|
||||||
if vim.v.shell_error ~= 0 then
|
if vim.v.shell_error ~= 0 then
|
||||||
return nil, nil
|
return nil, nil
|
||||||
end
|
end
|
||||||
@@ -128,7 +128,7 @@ end
|
|||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
if opts.git.cygwin_support then
|
if opts.git.cygwin_support then
|
||||||
M.use_cygpath = vim.fn.executable "cygpath" == 1
|
M.use_cygpath = vim.fn.executable("cygpath") == 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
local keymap = require "nvim-tree.keymap"
|
local keymap = require("nvim-tree.keymap")
|
||||||
|
local api = {} -- circular dependency
|
||||||
|
|
||||||
local PAT_MOUSE = "^<.*Mouse"
|
local PAT_MOUSE = "^<.*Mouse"
|
||||||
local PAT_CTRL = "^<C%-"
|
local PAT_CTRL = "^<C%-"
|
||||||
@@ -26,12 +27,12 @@ local function tidy_lhs(lhs)
|
|||||||
lhs = lhs:gsub("^<lt>", "<")
|
lhs = lhs:gsub("^<lt>", "<")
|
||||||
|
|
||||||
-- shorten ctrls
|
-- shorten ctrls
|
||||||
if lhs:lower():match "^<ctrl%-" then
|
if lhs:lower():match("^<ctrl%-") then
|
||||||
lhs = lhs:lower():gsub("^<ctrl%-", "<C%-")
|
lhs = lhs:lower():gsub("^<ctrl%-", "<C%-")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- uppercase ctrls
|
-- uppercase ctrls
|
||||||
if lhs:lower():match "^<c%-" then
|
if lhs:lower():match("^<c%-") then
|
||||||
lhs = lhs:upper()
|
lhs = lhs:upper()
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -79,18 +80,19 @@ local function sort_lhs(a, b)
|
|||||||
end
|
end
|
||||||
|
|
||||||
--- Compute all lines for the buffer
|
--- Compute all lines for the buffer
|
||||||
|
---@param map table keymap.get_keymap
|
||||||
---@return table strings of text
|
---@return table strings of text
|
||||||
---@return table arrays of arguments 3-6 for nvim_buf_add_highlight()
|
---@return table arrays of arguments 3-6 for nvim_buf_add_highlight()
|
||||||
---@return number maximum length of text
|
---@return number maximum length of text
|
||||||
local function compute()
|
local function compute(map)
|
||||||
local head_lhs = "nvim-tree mappings"
|
local head_lhs = "nvim-tree mappings"
|
||||||
local head_rhs1 = "exit: q"
|
local head_rhs1 = "exit: q"
|
||||||
local head_rhs2 = string.format("sort by %s: s", M.config.sort_by == "key" and "description" or "keymap")
|
local head_rhs2 = string.format("sort by %s: s", M.config.sort_by == "key" and "description" or "keymap")
|
||||||
|
|
||||||
-- formatted lhs and desc from active keymap
|
-- formatted lhs and desc from active keymap
|
||||||
local mappings = vim.tbl_map(function(map)
|
local mappings = vim.tbl_map(function(m)
|
||||||
return { lhs = tidy_lhs(map.lhs), desc = tidy_desc(map.desc) }
|
return { lhs = tidy_lhs(m.lhs), desc = tidy_desc(m.desc) }
|
||||||
end, keymap.get_keymap())
|
end, map)
|
||||||
|
|
||||||
-- sorter function for mappings
|
-- sorter function for mappings
|
||||||
local sort_fn
|
local sort_fn
|
||||||
@@ -165,8 +167,11 @@ local function open()
|
|||||||
-- close existing, shouldn't be necessary
|
-- close existing, shouldn't be necessary
|
||||||
close()
|
close()
|
||||||
|
|
||||||
|
-- fetch all mappings
|
||||||
|
local map = keymap.get_keymap()
|
||||||
|
|
||||||
-- text and highlight
|
-- text and highlight
|
||||||
local lines, hl, width = compute()
|
local lines, hl, width = compute(map)
|
||||||
|
|
||||||
-- create the buffer
|
-- create the buffer
|
||||||
M.bufnr = vim.api.nvim_create_buf(false, true)
|
M.bufnr = vim.api.nvim_create_buf(false, true)
|
||||||
@@ -174,7 +179,7 @@ local function open()
|
|||||||
-- populate it
|
-- populate it
|
||||||
vim.api.nvim_buf_set_lines(M.bufnr, 0, -1, false, lines)
|
vim.api.nvim_buf_set_lines(M.bufnr, 0, -1, false, lines)
|
||||||
|
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("modifiable", false, { buf = M.bufnr })
|
vim.api.nvim_set_option_value("modifiable", false, { buf = M.bufnr })
|
||||||
else
|
else
|
||||||
vim.api.nvim_buf_set_option(M.bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_buf_set_option(M.bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
||||||
@@ -206,12 +211,21 @@ local function open()
|
|||||||
open()
|
open()
|
||||||
end
|
end
|
||||||
|
|
||||||
local keymaps = {
|
-- hardcoded
|
||||||
|
local help_keymaps = {
|
||||||
q = { fn = close, desc = "nvim-tree: exit help" },
|
q = { fn = close, desc = "nvim-tree: exit help" },
|
||||||
|
["<Esc>"] = { fn = close, desc = "nvim-tree: exit help" }, -- hidden
|
||||||
s = { fn = toggle_sort, desc = "nvim-tree: toggle sorting method" },
|
s = { fn = toggle_sort, desc = "nvim-tree: toggle sorting method" },
|
||||||
}
|
}
|
||||||
|
|
||||||
for k, v in pairs(keymaps) do
|
-- api help binding closes
|
||||||
|
for _, m in ipairs(map) do
|
||||||
|
if m.callback == api.tree.toggle_help then
|
||||||
|
help_keymaps[m.lhs] = { fn = close, desc = "nvim-tree: exit help" }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for k, v in pairs(help_keymaps) do
|
||||||
vim.keymap.set("n", k, v.fn, {
|
vim.keymap.set("n", k, v.fn, {
|
||||||
desc = v.desc,
|
desc = v.desc,
|
||||||
buffer = M.bufnr,
|
buffer = M.bufnr,
|
||||||
@@ -240,6 +254,8 @@ end
|
|||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.config.cursorline = opts.view.cursorline
|
M.config.cursorline = opts.view.cursorline
|
||||||
M.config.sort_by = opts.help.sort_by
|
M.config.sort_by = opts.help.sort_by
|
||||||
|
|
||||||
|
api = require("nvim-tree.api")
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -19,14 +19,31 @@ local function generate_keymap(fn)
|
|||||||
return keymap
|
return keymap
|
||||||
end
|
end
|
||||||
|
|
||||||
-- stylua: ignore start
|
---@return table
|
||||||
|
function M.get_keymap()
|
||||||
|
return generate_keymap(M.on_attach)
|
||||||
|
end
|
||||||
|
|
||||||
|
---@return table
|
||||||
|
function M.get_keymap_default()
|
||||||
|
return generate_keymap(M.default_on_attach)
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.setup(opts)
|
||||||
|
if type(opts.on_attach) ~= "function" then
|
||||||
|
M.on_attach = M.default_on_attach
|
||||||
|
else
|
||||||
|
M.on_attach = opts.on_attach
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
---@param bufnr integer
|
---@param bufnr integer
|
||||||
function M.default_on_attach(bufnr)
|
function M.default_on_attach(bufnr)
|
||||||
local api = require('nvim-tree.api')
|
local api = require("nvim-tree.api")
|
||||||
|
|
||||||
local function opts(desc)
|
local function opts(desc)
|
||||||
return {
|
return {
|
||||||
desc = 'nvim-tree: ' .. desc,
|
desc = "nvim-tree: " .. desc,
|
||||||
buffer = bufnr,
|
buffer = bufnr,
|
||||||
noremap = true,
|
noremap = true,
|
||||||
silent = true,
|
silent = true,
|
||||||
@@ -34,6 +51,8 @@ function M.default_on_attach(bufnr)
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- formatting cannot be re-enabled, hence this is at the end
|
||||||
|
---@format disable
|
||||||
-- BEGIN_DEFAULT_ON_ATTACH
|
-- BEGIN_DEFAULT_ON_ATTACH
|
||||||
vim.keymap.set('n', '<C-]>', api.tree.change_root_to_node, opts('CD'))
|
vim.keymap.set('n', '<C-]>', api.tree.change_root_to_node, opts('CD'))
|
||||||
vim.keymap.set('n', '<C-e>', api.node.open.replace_tree_buffer, opts('Open: In Place'))
|
vim.keymap.set('n', '<C-e>', api.node.open.replace_tree_buffer, opts('Open: In Place'))
|
||||||
@@ -95,24 +114,5 @@ function M.default_on_attach(bufnr)
|
|||||||
vim.keymap.set('n', '<2-RightMouse>', api.tree.change_root_to_node, opts('CD'))
|
vim.keymap.set('n', '<2-RightMouse>', api.tree.change_root_to_node, opts('CD'))
|
||||||
-- END_DEFAULT_ON_ATTACH
|
-- END_DEFAULT_ON_ATTACH
|
||||||
end
|
end
|
||||||
-- stylua: ignore end
|
|
||||||
|
|
||||||
---@return table
|
|
||||||
function M.get_keymap()
|
|
||||||
return generate_keymap(M.on_attach)
|
|
||||||
end
|
|
||||||
|
|
||||||
---@return table
|
|
||||||
function M.get_keymap_default()
|
|
||||||
return generate_keymap(M.default_on_attach)
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
if type(opts.on_attach) ~= "function" then
|
|
||||||
M.on_attach = M.default_on_attach
|
|
||||||
else
|
|
||||||
M.on_attach = opts.on_attach
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@@ -64,23 +64,24 @@ end
|
|||||||
|
|
||||||
local function deprecated(opts)
|
local function deprecated(opts)
|
||||||
if type(opts.view) == "table" and opts.view.hide_root_folder then
|
if type(opts.view) == "table" and opts.view.hide_root_folder then
|
||||||
notify.info "view.hide_root_folder is deprecated, please set renderer.root_folder_label = false"
|
notify.info("view.hide_root_folder is deprecated, please set renderer.root_folder_label = false")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function removed(opts)
|
local function removed(opts)
|
||||||
if opts.auto_close then
|
if opts.auto_close then
|
||||||
notify.warn "auto close feature has been removed: https://github.com/nvim-tree/nvim-tree.lua/wiki/Auto-Close"
|
notify.warn("auto close feature has been removed: https://github.com/nvim-tree/nvim-tree.lua/wiki/Auto-Close")
|
||||||
opts.auto_close = nil
|
opts.auto_close = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
if opts.focus_empty_on_setup then
|
if opts.focus_empty_on_setup then
|
||||||
notify.warn "focus_empty_on_setup has been removed: https://github.com/nvim-tree/nvim-tree.lua/wiki/Open-At-Startup"
|
notify.warn("focus_empty_on_setup has been removed: https://github.com/nvim-tree/nvim-tree.lua/wiki/Open-At-Startup")
|
||||||
opts.focus_empty_on_setup = nil
|
opts.focus_empty_on_setup = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
if opts.create_in_closed_folder then
|
if opts.create_in_closed_folder then
|
||||||
notify.warn "create_in_closed_folder has been removed and is now the default behaviour. You may use api.fs.create to add a file under your desired node."
|
notify.warn(
|
||||||
|
"create_in_closed_folder has been removed and is now the default behaviour. You may use api.fs.create to add a file under your desired node.")
|
||||||
end
|
end
|
||||||
opts.create_in_closed_folder = nil
|
opts.create_in_closed_folder = nil
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
local renderer = require "nvim-tree.renderer"
|
local view = require("nvim-tree.view")
|
||||||
local view = require "nvim-tree.view"
|
local core = require("nvim-tree.core")
|
||||||
local core = require "nvim-tree.core"
|
local utils = require("nvim-tree.utils")
|
||||||
local utils = require "nvim-tree.utils"
|
local events = require("nvim-tree.events")
|
||||||
local events = require "nvim-tree.events"
|
local notify = require("nvim-tree.notify")
|
||||||
local notify = require "nvim-tree.notify"
|
local explorer_node = require("nvim-tree.explorer.node")
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
|
||||||
|
|
||||||
---@class LibOpenOpts
|
---@class LibOpenOpts
|
||||||
---@field path string|nil path
|
---@field path string|nil path
|
||||||
@@ -15,25 +14,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.
|
||||||
@@ -142,13 +149,15 @@ end
|
|||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.expand_or_collapse(node, toggle_group)
|
function M.expand_or_collapse(node, toggle_group)
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
|
||||||
toggle_group = toggle_group or false
|
toggle_group = toggle_group or false
|
||||||
if node.has_children then
|
if node.has_children then
|
||||||
node.has_children = false
|
node.has_children = false
|
||||||
end
|
end
|
||||||
|
|
||||||
if #node.nodes == 0 then
|
if #node.nodes == 0 and explorer then
|
||||||
core.get_explorer():expand(node)
|
explorer:expand(node)
|
||||||
end
|
end
|
||||||
|
|
||||||
local head_node = utils.get_parent_of_group(node)
|
local head_node = utils.get_parent_of_group(node)
|
||||||
@@ -167,7 +176,9 @@ function M.expand_or_collapse(node, toggle_group)
|
|||||||
n.open = next_open
|
n.open = next_open
|
||||||
end
|
end
|
||||||
|
|
||||||
renderer.draw()
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.set_target_win()
|
function M.set_target_win()
|
||||||
@@ -192,7 +203,11 @@ local function open_view_and_draw()
|
|||||||
local cwd = vim.fn.getcwd()
|
local cwd = vim.fn.getcwd()
|
||||||
view.open()
|
view.open()
|
||||||
handle_buf_cwd(cwd)
|
handle_buf_cwd(cwd)
|
||||||
renderer.draw()
|
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function should_hijack_current_buf()
|
local function should_hijack_current_buf()
|
||||||
@@ -200,7 +215,7 @@ local function should_hijack_current_buf()
|
|||||||
local bufname = vim.api.nvim_buf_get_name(bufnr)
|
local bufname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
|
|
||||||
local bufmodified, ft
|
local bufmodified, ft
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
bufmodified = vim.api.nvim_get_option_value("modified", { buf = bufnr })
|
bufmodified = vim.api.nvim_get_option_value("modified", { buf = bufnr })
|
||||||
ft = vim.api.nvim_get_option_value("ft", { buf = bufnr })
|
ft = vim.api.nvim_get_option_value("ft", { buf = bufnr })
|
||||||
else
|
else
|
||||||
@@ -261,16 +276,25 @@ function M.open(opts)
|
|||||||
core.init(cwd)
|
core.init(cwd)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
|
||||||
if should_hijack_current_buf() then
|
if should_hijack_current_buf() then
|
||||||
view.close_this_tab_only()
|
view.close_this_tab_only()
|
||||||
view.open_in_win()
|
view.open_in_win()
|
||||||
renderer.draw()
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
elseif opts.winid then
|
elseif opts.winid then
|
||||||
view.open_in_win { hijack_current_buf = false, resize = false, winid = opts.winid }
|
view.open_in_win({ hijack_current_buf = false, resize = false, winid = opts.winid })
|
||||||
renderer.draw()
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
elseif opts.current_window then
|
elseif opts.current_window then
|
||||||
view.open_in_win { hijack_current_buf = false, resize = false }
|
view.open_in_win({ hijack_current_buf = false, resize = false })
|
||||||
renderer.draw()
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
else
|
else
|
||||||
open_view_and_draw()
|
open_view_and_draw()
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ end
|
|||||||
---@return Profile to pass to profile_end
|
---@return Profile to pass to profile_end
|
||||||
function M.profile_start(fmt, ...)
|
function M.profile_start(fmt, ...)
|
||||||
local profile = {}
|
local profile = {}
|
||||||
if M.enabled "profile" then
|
if M.enabled("profile") then
|
||||||
profile.start = vim.loop.hrtime()
|
profile.start = vim.loop.hrtime()
|
||||||
profile.tag = string.format((fmt or "???"), ...)
|
profile.tag = string.format((fmt or "???"), ...)
|
||||||
M.line("profile", "START %s", profile.tag)
|
M.line("profile", "START %s", profile.tag)
|
||||||
@@ -44,7 +44,7 @@ end
|
|||||||
--- END is prefixed and duration in seconds is suffixed
|
--- END is prefixed and duration in seconds is suffixed
|
||||||
---@param profile Profile returned from profile_start
|
---@param profile Profile returned from profile_start
|
||||||
function M.profile_end(profile)
|
function M.profile_end(profile)
|
||||||
if M.enabled "profile" and type(profile) == "table" then
|
if M.enabled("profile") and type(profile) == "table" then
|
||||||
local millis = profile.start and math.modf((vim.loop.hrtime() - profile.start) / 1000000) or -1
|
local millis = profile.start and math.modf((vim.loop.hrtime() - profile.start) / 1000000) or -1
|
||||||
M.line("profile", "END %s %dms", profile.tag or "", millis)
|
M.line("profile", "END %s %dms", profile.tag or "", millis)
|
||||||
end
|
end
|
||||||
@@ -57,7 +57,7 @@ end
|
|||||||
---@param ... any arguments for string.format
|
---@param ... any arguments for string.format
|
||||||
function M.line(typ, fmt, ...)
|
function M.line(typ, fmt, ...)
|
||||||
if M.enabled(typ) then
|
if M.enabled(typ) then
|
||||||
M.raw(typ, string.format("[%s] [%s] %s\n", os.date "%Y-%m-%d %H:%M:%S", typ, (fmt or "???")), ...)
|
M.raw(typ, string.format("[%s] [%s] %s\n", os.date("%Y-%m-%d %H:%M:%S"), typ, (fmt or "???")), ...)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -77,7 +77,7 @@ end
|
|||||||
function M.node(typ, node, fmt, ...)
|
function M.node(typ, node, fmt, ...)
|
||||||
if M.enabled(typ) then
|
if M.enabled(typ) then
|
||||||
node = node or require("nvim-tree.lib").get_node_at_cursor()
|
node = node or require("nvim-tree.lib").get_node_at_cursor()
|
||||||
M.raw(typ, string.format("[%s] [%s] %s\n%s\n", os.date "%Y-%m-%d %H:%M:%S", typ, (fmt or "???"), vim.inspect(node, inspect_opts)), ...)
|
M.raw(typ, string.format("[%s] [%s] %s\n%s\n", os.date("%Y-%m-%d %H:%M:%S"), typ, (fmt or "???"), vim.inspect(node, inspect_opts)), ...)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -91,7 +91,7 @@ end
|
|||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.config = opts.log
|
M.config = opts.log
|
||||||
if M.config and M.config.enable and M.config.types then
|
if M.config and M.config.enable and M.config.types then
|
||||||
M.path = string.format("%s/nvim-tree.log", vim.fn.stdpath "log", os.date "%H:%M:%S", vim.env.USER)
|
M.path = string.format("%s/nvim-tree.log", vim.fn.stdpath("log"), os.date("%H:%M:%S"), vim.env.USER)
|
||||||
if M.config.truncate then
|
if M.config.truncate then
|
||||||
os.remove(M.path)
|
os.remove(M.path)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
local marks = require "nvim-tree.marks"
|
|
||||||
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[]
|
|
||||||
local function do_delete(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
|
|
||||||
function M.bulk_delete()
|
|
||||||
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(nodes)
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
else
|
|
||||||
do_delete(nodes)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config.ui = opts.ui
|
|
||||||
M.config.filesystem_watchers = opts.filesystem_watchers
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
local marks = require "nvim-tree.marks"
|
|
||||||
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 = {},
|
|
||||||
}
|
|
||||||
|
|
||||||
function M.bulk_move()
|
|
||||||
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,47 +0,0 @@
|
|||||||
local marks = require "nvim-tree.marks"
|
|
||||||
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
|
|
||||||
|
|
||||||
marks.clear_marks()
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.bulk_trash()
|
|
||||||
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)
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
else
|
|
||||||
do_trash(nodes)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config.ui = opts.ui
|
|
||||||
M.config.filesystem_watchers = opts.filesystem_watchers
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,68 +1,272 @@
|
|||||||
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 trash = require("nvim-tree.actions.fs.trash")
|
||||||
|
local utils = require("nvim-tree.utils")
|
||||||
|
|
||||||
local NvimTreeMarks = {}
|
---@class Marks
|
||||||
|
---@field config table hydrated user opts.filters
|
||||||
|
---@field private explorer Explorer
|
||||||
|
---@field private marks table<string, Node> by absolute path
|
||||||
|
local Marks = {}
|
||||||
|
|
||||||
local M = {}
|
---@return Marks
|
||||||
|
---@param opts table user options
|
||||||
|
---@param explorer Explorer
|
||||||
|
function Marks:new(opts, explorer)
|
||||||
|
local o = {
|
||||||
|
explorer = explorer,
|
||||||
|
config = {
|
||||||
|
ui = opts.ui,
|
||||||
|
filesystem_watchers = opts.filesystem_watchers,
|
||||||
|
},
|
||||||
|
marks = {},
|
||||||
|
}
|
||||||
|
|
||||||
---@class MinimalNode
|
setmetatable(o, self)
|
||||||
---@field absolute_path string
|
self.__index = self
|
||||||
|
return o
|
||||||
---@param node Node|MinimalNode
|
|
||||||
local function add_mark(node)
|
|
||||||
NvimTreeMarks[node.absolute_path] = node
|
|
||||||
|
|
||||||
renderer.draw()
|
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node|MinimalNode
|
---Clear all marks and reload if watchers disabled
|
||||||
local function remove_mark(node)
|
---@private
|
||||||
NvimTreeMarks[node.absolute_path] = nil
|
function Marks:clear_reload()
|
||||||
|
self:clear()
|
||||||
renderer.draw()
|
if not self.config.filesystem_watchers.enable then
|
||||||
|
self.explorer:reload_explorer()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node|MinimalNode
|
---Clear all marks and redraw
|
||||||
function M.toggle_mark(node)
|
---@public
|
||||||
|
function Marks:clear()
|
||||||
|
self.marks = {}
|
||||||
|
self.explorer.renderer:draw()
|
||||||
|
end
|
||||||
|
|
||||||
|
---@public
|
||||||
|
---@param node Node
|
||||||
|
function Marks:toggle(node)
|
||||||
if node.absolute_path == nil then
|
if node.absolute_path == nil then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if M.get_mark(node) then
|
if self:get(node) then
|
||||||
remove_mark(node)
|
self.marks[node.absolute_path] = nil
|
||||||
else
|
else
|
||||||
add_mark(node)
|
self.marks[node.absolute_path] = node
|
||||||
end
|
end
|
||||||
|
|
||||||
renderer.draw()
|
self.explorer.renderer:draw()
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.clear_marks()
|
---Return node if marked
|
||||||
NvimTreeMarks = {}
|
---@public
|
||||||
|
---@param node Node
|
||||||
renderer.draw()
|
---@return Node|nil
|
||||||
|
function Marks:get(node)
|
||||||
|
return node and self.marks[node.absolute_path]
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node|MinimalNode
|
---List marked nodes
|
||||||
---@return table|nil
|
---@public
|
||||||
function M.get_mark(node)
|
---@return Node[]
|
||||||
return node and NvimTreeMarks[node.absolute_path]
|
function Marks:list()
|
||||||
end
|
|
||||||
|
|
||||||
---@return table
|
|
||||||
function M.get_marks()
|
|
||||||
local list = {}
|
local list = {}
|
||||||
for _, node in pairs(NvimTreeMarks) do
|
for _, node in pairs(self.marks) do
|
||||||
table.insert(list, node)
|
table.insert(list, node)
|
||||||
end
|
end
|
||||||
return list
|
return list
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.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
|
end
|
||||||
|
|
||||||
return M
|
---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
|
||||||
|
|
||||||
|
return Marks
|
||||||
|
|||||||
@@ -1,102 +0,0 @@
|
|||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
|
||||||
local core = require "nvim-tree.core"
|
|
||||||
local Marks = require "nvim-tree.marks"
|
|
||||||
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 first, prev, next, last = nil, nil, nil, nil
|
|
||||||
local found = false
|
|
||||||
|
|
||||||
Iterator.builder(core.get_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 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 list = vim.tbl_map(function(n)
|
|
||||||
return n.absolute_path
|
|
||||||
end, 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 = Marks.get_mark { absolute_path = choice }
|
|
||||||
open_or_focus(node)
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -9,6 +9,7 @@
|
|||||||
---@field fs_stat uv.fs_stat.result|nil
|
---@field fs_stat uv.fs_stat.result|nil
|
||||||
---@field git_status GitStatus|nil
|
---@field git_status GitStatus|nil
|
||||||
---@field hidden boolean
|
---@field hidden boolean
|
||||||
|
---@field is_dot boolean
|
||||||
---@field name string
|
---@field name string
|
||||||
---@field parent DirNode
|
---@field parent DirNode
|
||||||
---@field type string
|
---@field type string
|
||||||
@@ -20,6 +21,7 @@
|
|||||||
---@field group_next Node|nil
|
---@field group_next Node|nil
|
||||||
---@field nodes Node[]
|
---@field nodes Node[]
|
||||||
---@field open boolean
|
---@field open boolean
|
||||||
|
---@field hidden_stats table -- Each field of this table is a key for source and value for count
|
||||||
|
|
||||||
---@class FileNode: BaseNode
|
---@class FileNode: BaseNode
|
||||||
---@field extension string
|
---@field extension string
|
||||||
|
|||||||
@@ -9,9 +9,9 @@ local title_support
|
|||||||
---@return boolean
|
---@return boolean
|
||||||
function M.supports_title()
|
function M.supports_title()
|
||||||
if title_support == nil then
|
if title_support == nil then
|
||||||
title_support = (package.loaded.notify and (vim.notify == require "notify" or vim.notify == require("notify").notify))
|
title_support = (package.loaded.notify and (vim.notify == require("notify") or vim.notify == require("notify").notify))
|
||||||
or (package.loaded.noice and (vim.notify == require("noice").notify or vim.notify == require("noice.source.notify").notify))
|
or (package.loaded.noice and (vim.notify == require("noice").notify or vim.notify == require("noice.source.notify").notify))
|
||||||
or (package.loaded.notifier and require("notifier.config").has_component "nvim")
|
or (package.loaded.notifier and require("notifier.config").has_component("nvim"))
|
||||||
or false
|
or false
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -35,7 +35,7 @@ do
|
|||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
if not M.supports_title() then
|
if not M.supports_title() then
|
||||||
-- add title to the message, with a newline if the message is multiline
|
-- add title to the message, with a newline if the message is multiline
|
||||||
msg = string.format("[NvimTree]%s%s", (msg:match "\n" and "\n" or " "), msg)
|
msg = string.format("[NvimTree]%s%s", (msg:match("\n") and "\n" or " "), msg)
|
||||||
end
|
end
|
||||||
|
|
||||||
vim.notify(msg, level, { title = "NvimTree" })
|
vim.notify(msg, level, { title = "NvimTree" })
|
||||||
|
|||||||
@@ -1,58 +1,62 @@
|
|||||||
local core = require "nvim-tree.core"
|
local notify = require("nvim-tree.notify")
|
||||||
local live_filter = require "nvim-tree.live-filter"
|
local utils = require("nvim-tree.utils")
|
||||||
local notify = require "nvim-tree.notify"
|
local view = require("nvim-tree.view")
|
||||||
local utils = require "nvim-tree.utils"
|
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
|
|
||||||
local DecoratorBookmarks = require "nvim-tree.renderer.decorator.bookmarks"
|
local DecoratorBookmarks = require("nvim-tree.renderer.decorator.bookmarks")
|
||||||
local DecoratorCopied = require "nvim-tree.renderer.decorator.copied"
|
local DecoratorCopied = require("nvim-tree.renderer.decorator.copied")
|
||||||
local DecoratorCut = require "nvim-tree.renderer.decorator.cut"
|
local DecoratorCut = require("nvim-tree.renderer.decorator.cut")
|
||||||
local DecoratorDiagnostics = require "nvim-tree.renderer.decorator.diagnostics"
|
local DecoratorDiagnostics = require("nvim-tree.renderer.decorator.diagnostics")
|
||||||
local DecoratorGit = require "nvim-tree.renderer.decorator.git"
|
local DecoratorGit = require("nvim-tree.renderer.decorator.git")
|
||||||
local DecoratorModified = require "nvim-tree.renderer.decorator.modified"
|
local DecoratorModified = require("nvim-tree.renderer.decorator.modified")
|
||||||
local DecoratorOpened = require "nvim-tree.renderer.decorator.opened"
|
local DecoratorHidden = require("nvim-tree.renderer.decorator.hidden")
|
||||||
|
local DecoratorOpened = require("nvim-tree.renderer.decorator.opened")
|
||||||
|
|
||||||
local pad = require "nvim-tree.renderer.components.padding"
|
local pad = require("nvim-tree.renderer.components.padding")
|
||||||
local icons = require "nvim-tree.renderer.components.icons"
|
local icons = require("nvim-tree.renderer.components.icons")
|
||||||
|
|
||||||
local M = {
|
local PICTURE_MAP = {
|
||||||
opts = {},
|
|
||||||
decorators = {},
|
|
||||||
picture_map = {
|
|
||||||
jpg = true,
|
jpg = true,
|
||||||
jpeg = true,
|
jpeg = true,
|
||||||
png = true,
|
png = true,
|
||||||
gif = true,
|
gif = true,
|
||||||
webp = true,
|
webp = true,
|
||||||
jxl = true,
|
jxl = true,
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
---@class HighlightedString
|
---@class (exact) HighlightedString
|
||||||
---@field str string
|
---@field str string
|
||||||
---@field hl string[]
|
---@field hl string[]
|
||||||
|
|
||||||
---@class AddHighlightArgs
|
---@class (exact) AddHighlightArgs
|
||||||
---@field group string[]
|
---@field group string[]
|
||||||
---@field line number
|
---@field line number
|
||||||
---@field col_start number
|
---@field col_start number
|
||||||
---@field col_end number
|
---@field col_end number
|
||||||
|
|
||||||
---@class Builder
|
---@class (exact) Builder
|
||||||
|
---@field private __index? table
|
||||||
---@field lines string[] includes icons etc.
|
---@field lines string[] includes icons etc.
|
||||||
---@field hl_args AddHighlightArgs[] line highlights
|
---@field hl_args AddHighlightArgs[] line highlights
|
||||||
---@field signs string[] line signs
|
---@field signs string[] line signs
|
||||||
---@field private root_cwd string absolute path
|
---@field extmarks table[] extra marks for right icon placement
|
||||||
|
---@field virtual_lines table[] virtual lines for hidden count display
|
||||||
|
---@field private explorer Explorer
|
||||||
---@field private index number
|
---@field private index number
|
||||||
---@field private depth number
|
---@field private depth number
|
||||||
---@field private combined_groups table<string, boolean> combined group names
|
---@field private combined_groups table<string, boolean> combined group names
|
||||||
---@field private markers boolean[] indent markers
|
---@field private markers boolean[] indent markers
|
||||||
|
---@field private decorators Decorator[]
|
||||||
|
---@field private hidden_display fun(node: Node): string|nil
|
||||||
local Builder = {}
|
local Builder = {}
|
||||||
|
|
||||||
|
---@param opts table user options
|
||||||
|
---@param explorer Explorer
|
||||||
---@return Builder
|
---@return Builder
|
||||||
function Builder:new()
|
function Builder:new(opts, explorer)
|
||||||
|
---@type Builder
|
||||||
local o = {
|
local o = {
|
||||||
root_cwd = core.get_cwd(),
|
opts = opts,
|
||||||
|
explorer = explorer,
|
||||||
index = 0,
|
index = 0,
|
||||||
depth = 0,
|
depth = 0,
|
||||||
hl_args = {},
|
hl_args = {},
|
||||||
@@ -60,7 +64,22 @@ function Builder:new()
|
|||||||
lines = {},
|
lines = {},
|
||||||
markers = {},
|
markers = {},
|
||||||
signs = {},
|
signs = {},
|
||||||
|
extmarks = {},
|
||||||
|
virtual_lines = {},
|
||||||
|
decorators = {
|
||||||
|
-- priority order
|
||||||
|
DecoratorCut:new(opts, explorer),
|
||||||
|
DecoratorCopied:new(opts, explorer),
|
||||||
|
DecoratorDiagnostics:new(opts, explorer),
|
||||||
|
DecoratorBookmarks:new(opts, explorer),
|
||||||
|
DecoratorModified:new(opts, explorer),
|
||||||
|
DecoratorHidden:new(opts, explorer),
|
||||||
|
DecoratorOpened:new(opts, explorer),
|
||||||
|
DecoratorGit:new(opts, explorer),
|
||||||
|
},
|
||||||
|
hidden_display = Builder:setup_hidden_display_function(opts),
|
||||||
}
|
}
|
||||||
|
|
||||||
setmetatable(o, self)
|
setmetatable(o, self)
|
||||||
self.__index = self
|
self.__index = self
|
||||||
|
|
||||||
@@ -85,8 +104,8 @@ function Builder:get_folder_name(node)
|
|||||||
next = next.group_next
|
next = next.group_next
|
||||||
end
|
end
|
||||||
|
|
||||||
if node.group_next and type(M.opts.renderer.group_empty) == "function" then
|
if node.group_next and type(self.opts.renderer.group_empty) == "function" then
|
||||||
local new_name = M.opts.renderer.group_empty(name)
|
local new_name = self.opts.renderer.group_empty(name)
|
||||||
if type(new_name) == "string" then
|
if type(new_name) == "string" then
|
||||||
name = new_name
|
name = new_name
|
||||||
else
|
else
|
||||||
@@ -94,7 +113,7 @@ function Builder:get_folder_name(node)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return string.format("%s%s", name, M.opts.renderer.add_trailing and "/" or "")
|
return string.format("%s%s", name, self.opts.renderer.add_trailing and "/" or "")
|
||||||
end
|
end
|
||||||
|
|
||||||
---@private
|
---@private
|
||||||
@@ -135,13 +154,13 @@ function Builder:build_folder(node)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local foldername_hl = "NvimTreeFolderName"
|
local foldername_hl = "NvimTreeFolderName"
|
||||||
if node.link_to and M.opts.renderer.symlink_destination then
|
if node.link_to and self.opts.renderer.symlink_destination then
|
||||||
local arrow = icons.i.symlink_arrow
|
local arrow = icons.i.symlink_arrow
|
||||||
local link_to = utils.path_relative(node.link_to, self.root_cwd)
|
local link_to = utils.path_relative(node.link_to, self.explorer.absolute_path)
|
||||||
foldername = string.format("%s%s%s", foldername, arrow, link_to)
|
foldername = string.format("%s%s%s", foldername, arrow, link_to)
|
||||||
foldername_hl = "NvimTreeSymlinkFolderName"
|
foldername_hl = "NvimTreeSymlinkFolderName"
|
||||||
elseif
|
elseif
|
||||||
vim.tbl_contains(M.opts.renderer.special_files, node.absolute_path) or vim.tbl_contains(M.opts.renderer.special_files, node.name)
|
vim.tbl_contains(self.opts.renderer.special_files, node.absolute_path) or vim.tbl_contains(self.opts.renderer.special_files, node.name)
|
||||||
then
|
then
|
||||||
foldername_hl = "NvimTreeSpecialFolderName"
|
foldername_hl = "NvimTreeSpecialFolderName"
|
||||||
elseif node.open then
|
elseif node.open then
|
||||||
@@ -161,8 +180,8 @@ function Builder:build_symlink(node)
|
|||||||
local icon = icons.i.symlink
|
local icon = icons.i.symlink
|
||||||
local arrow = icons.i.symlink_arrow
|
local arrow = icons.i.symlink_arrow
|
||||||
local symlink_formatted = node.name
|
local symlink_formatted = node.name
|
||||||
if M.opts.renderer.symlink_destination then
|
if self.opts.renderer.symlink_destination then
|
||||||
local link_to = utils.path_relative(node.link_to, self.root_cwd)
|
local link_to = utils.path_relative(node.link_to, self.explorer.absolute_path)
|
||||||
symlink_formatted = string.format("%s%s%s", symlink_formatted, arrow, link_to)
|
symlink_formatted = string.format("%s%s%s", symlink_formatted, arrow, link_to)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -175,11 +194,13 @@ end
|
|||||||
---@return HighlightedString name
|
---@return HighlightedString name
|
||||||
function Builder:build_file(node)
|
function Builder:build_file(node)
|
||||||
local hl
|
local hl
|
||||||
if vim.tbl_contains(M.opts.renderer.special_files, node.absolute_path) or vim.tbl_contains(M.opts.renderer.special_files, node.name) then
|
if
|
||||||
|
vim.tbl_contains(self.opts.renderer.special_files, node.absolute_path) or vim.tbl_contains(self.opts.renderer.special_files, node.name)
|
||||||
|
then
|
||||||
hl = "NvimTreeSpecialFile"
|
hl = "NvimTreeSpecialFile"
|
||||||
elseif node.executable then
|
elseif node.executable then
|
||||||
hl = "NvimTreeExecFile"
|
hl = "NvimTreeExecFile"
|
||||||
elseif M.picture_map[node.extension] then
|
elseif PICTURE_MAP[node.extension] then
|
||||||
hl = "NvimTreeImageFile"
|
hl = "NvimTreeImageFile"
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -202,7 +223,7 @@ function Builder:format_line(indent_markers, arrows, icon, name, node)
|
|||||||
end
|
end
|
||||||
for _, v in ipairs(t2) do
|
for _, v in ipairs(t2) do
|
||||||
if added_len > 0 then
|
if added_len > 0 then
|
||||||
table.insert(t1, { str = M.opts.renderer.icons.padding })
|
table.insert(t1, { str = self.opts.renderer.icons.padding })
|
||||||
end
|
end
|
||||||
table.insert(t1, v)
|
table.insert(t1, v)
|
||||||
end
|
end
|
||||||
@@ -218,14 +239,22 @@ function Builder:format_line(indent_markers, arrows, icon, name, node)
|
|||||||
local line = { indent_markers, arrows }
|
local line = { indent_markers, arrows }
|
||||||
add_to_end(line, { icon })
|
add_to_end(line, { icon })
|
||||||
|
|
||||||
for i = #M.decorators, 1, -1 do
|
for i = #self.decorators, 1, -1 do
|
||||||
add_to_end(line, M.decorators[i]:icons_before(node))
|
add_to_end(line, self.decorators[i]:icons_before(node))
|
||||||
end
|
end
|
||||||
|
|
||||||
add_to_end(line, { name })
|
add_to_end(line, { name })
|
||||||
|
|
||||||
for i = #M.decorators, 1, -1 do
|
for i = #self.decorators, 1, -1 do
|
||||||
add_to_end(line, M.decorators[i]:icons_after(node))
|
add_to_end(line, self.decorators[i]:icons_after(node))
|
||||||
|
end
|
||||||
|
|
||||||
|
local rights = {}
|
||||||
|
for i = #self.decorators, 1, -1 do
|
||||||
|
add_to_end(rights, self.decorators[i]:icons_right_align(node))
|
||||||
|
end
|
||||||
|
if #rights > 0 then
|
||||||
|
self.extmarks[self.index] = rights
|
||||||
end
|
end
|
||||||
|
|
||||||
return line
|
return line
|
||||||
@@ -236,7 +265,7 @@ end
|
|||||||
function Builder:build_signs(node)
|
function Builder:build_signs(node)
|
||||||
-- first in priority order
|
-- first in priority order
|
||||||
local sign_name
|
local sign_name
|
||||||
for _, d in ipairs(M.decorators) do
|
for _, d in ipairs(self.decorators) do
|
||||||
sign_name = d:sign_name(node)
|
sign_name = d:sign_name(node)
|
||||||
if sign_name then
|
if sign_name then
|
||||||
self.signs[self.index] = sign_name
|
self.signs[self.index] = sign_name
|
||||||
@@ -288,8 +317,8 @@ function Builder:add_highlights(node)
|
|||||||
local icon_groups = {}
|
local icon_groups = {}
|
||||||
local name_groups = {}
|
local name_groups = {}
|
||||||
local d, icon, name
|
local d, icon, name
|
||||||
for i = #M.decorators, 1, -1 do
|
for i = #self.decorators, 1, -1 do
|
||||||
d = M.decorators[i]
|
d = self.decorators[i]
|
||||||
icon, name = d:groups_icon_name(node)
|
icon, name = d:groups_icon_name(node)
|
||||||
table.insert(icon_groups, icon)
|
table.insert(icon_groups, icon)
|
||||||
table.insert(name_groups, name)
|
table.insert(name_groups, name)
|
||||||
@@ -341,7 +370,6 @@ function Builder:build_line(node, idx, num_children)
|
|||||||
self.index = self.index + 1
|
self.index = self.index + 1
|
||||||
|
|
||||||
node = require("nvim-tree.lib").get_last_group_node(node)
|
node = require("nvim-tree.lib").get_last_group_node(node)
|
||||||
|
|
||||||
if node.open then
|
if node.open then
|
||||||
self.depth = self.depth + 1
|
self.depth = self.depth + 1
|
||||||
self:build_lines(node)
|
self:build_lines(node)
|
||||||
@@ -349,9 +377,35 @@ function Builder:build_line(node, idx, num_children)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Add virtual lines for rendering hidden count information per node
|
||||||
|
---@private
|
||||||
|
function Builder:add_hidden_count_string(node, idx, num_children)
|
||||||
|
if not node.open then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local hidden_count_string = self.hidden_display(node.hidden_stats)
|
||||||
|
if hidden_count_string and hidden_count_string ~= "" then
|
||||||
|
local indent_markers = pad.get_indent_markers(self.depth, idx or 0, num_children or 0, node, self.markers, 1)
|
||||||
|
local indent_width = self.opts.renderer.indent_width
|
||||||
|
|
||||||
|
local indent_padding = string.rep(" ", indent_width)
|
||||||
|
local indent_string = indent_padding .. indent_markers.str
|
||||||
|
local line_nr = #self.lines - 1
|
||||||
|
self.virtual_lines[line_nr] = self.virtual_lines[line_nr] or {}
|
||||||
|
|
||||||
|
-- NOTE: We are inserting in depth order because of current traversal
|
||||||
|
-- if we change the traversal, we might need to sort by depth before rendering `self.virtual_lines`
|
||||||
|
-- to maintain proper ordering of parent and child folder hidden count info.
|
||||||
|
table.insert(self.virtual_lines[line_nr], {
|
||||||
|
{ indent_string, indent_markers.hl },
|
||||||
|
{ string.rep(indent_padding, (node.parent == nil and 0 or 1)) .. hidden_count_string, "NvimTreeHiddenDisplay" },
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
---@private
|
---@private
|
||||||
function Builder:get_nodes_number(nodes)
|
function Builder:get_nodes_number(nodes)
|
||||||
if not live_filter.filter then
|
if not self.explorer.live_filter.filter then
|
||||||
return #nodes
|
return #nodes
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -367,7 +421,7 @@ end
|
|||||||
---@private
|
---@private
|
||||||
function Builder:build_lines(node)
|
function Builder:build_lines(node)
|
||||||
if not node then
|
if not node then
|
||||||
node = core.get_explorer()
|
node = self.explorer
|
||||||
end
|
end
|
||||||
local num_children = self:get_nodes_number(node.nodes)
|
local num_children = self:get_nodes_number(node.nodes)
|
||||||
local idx = 1
|
local idx = 1
|
||||||
@@ -378,6 +432,7 @@ function Builder:build_lines(node)
|
|||||||
idx = idx + 1
|
idx = idx + 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
self:add_hidden_count_string(node)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@private
|
---@private
|
||||||
@@ -385,29 +440,29 @@ end
|
|||||||
---@return string
|
---@return string
|
||||||
function Builder:format_root_name(root_label)
|
function Builder:format_root_name(root_label)
|
||||||
if type(root_label) == "function" then
|
if type(root_label) == "function" then
|
||||||
local label = root_label(self.root_cwd)
|
local label = root_label(self.explorer.absolute_path)
|
||||||
if type(label) == "string" then
|
if type(label) == "string" then
|
||||||
return label
|
return label
|
||||||
end
|
end
|
||||||
elseif type(root_label) == "string" then
|
elseif type(root_label) == "string" then
|
||||||
return utils.path_remove_trailing(vim.fn.fnamemodify(self.root_cwd, root_label))
|
return utils.path_remove_trailing(vim.fn.fnamemodify(self.explorer.absolute_path, root_label))
|
||||||
end
|
end
|
||||||
return "???"
|
return "???"
|
||||||
end
|
end
|
||||||
|
|
||||||
---@private
|
---@private
|
||||||
function Builder:build_header()
|
function Builder:build_header()
|
||||||
if view.is_root_folder_visible(core.get_cwd()) then
|
if view.is_root_folder_visible(self.explorer.absolute_path) then
|
||||||
local root_name = self:format_root_name(M.opts.renderer.root_folder_label)
|
local root_name = self:format_root_name(self.opts.renderer.root_folder_label)
|
||||||
table.insert(self.lines, root_name)
|
table.insert(self.lines, root_name)
|
||||||
self:insert_highlight({ "NvimTreeRootFolder" }, 0, string.len(root_name))
|
self:insert_highlight({ "NvimTreeRootFolder" }, 0, string.len(root_name))
|
||||||
self.index = 1
|
self.index = 1
|
||||||
end
|
end
|
||||||
|
|
||||||
if live_filter.filter then
|
if self.explorer.live_filter.filter then
|
||||||
local filter_line = string.format("%s/%s/", M.opts.live_filter.prefix, live_filter.filter)
|
local filter_line = string.format("%s/%s/", self.opts.live_filter.prefix, self.explorer.live_filter.filter)
|
||||||
table.insert(self.lines, filter_line)
|
table.insert(self.lines, filter_line)
|
||||||
local prefix_length = string.len(M.opts.live_filter.prefix)
|
local prefix_length = string.len(self.opts.live_filter.prefix)
|
||||||
self:insert_highlight({ "NvimTreeLiveFilterPrefix" }, 0, prefix_length)
|
self:insert_highlight({ "NvimTreeLiveFilterPrefix" }, 0, prefix_length)
|
||||||
self:insert_highlight({ "NvimTreeLiveFilterValue" }, prefix_length, string.len(filter_line))
|
self:insert_highlight({ "NvimTreeLiveFilterValue" }, prefix_length, string.len(filter_line))
|
||||||
self.index = self.index + 1
|
self.index = self.index + 1
|
||||||
@@ -432,19 +487,47 @@ function Builder:build()
|
|||||||
return self
|
return self
|
||||||
end
|
end
|
||||||
|
|
||||||
function Builder.setup(opts)
|
---TODO refactor back to function; this was left here to reduce PR noise
|
||||||
M.opts = opts
|
---@param opts table
|
||||||
|
---@return fun(node: Node): string|nil
|
||||||
|
function Builder:setup_hidden_display_function(opts)
|
||||||
|
local hidden_display = opts.renderer.hidden_display
|
||||||
|
-- options are already validated, so ´hidden_display´ can ONLY be `string` or `function` if type(hidden_display) == "string" then
|
||||||
|
if type(hidden_display) == "string" then
|
||||||
|
if hidden_display == "none" then
|
||||||
|
return function()
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
elseif hidden_display == "simple" then
|
||||||
|
return function(hidden_stats)
|
||||||
|
return utils.default_format_hidden_count(hidden_stats, true)
|
||||||
|
end
|
||||||
|
else -- "all"
|
||||||
|
return function(hidden_stats)
|
||||||
|
return utils.default_format_hidden_count(hidden_stats, false)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else -- "function
|
||||||
|
return function(hidden_stats)
|
||||||
|
-- In case of missing field such as live_filter we zero it, otherwise keep field as is
|
||||||
|
hidden_stats = vim.tbl_deep_extend("force", {
|
||||||
|
live_filter = 0,
|
||||||
|
git = 0,
|
||||||
|
buf = 0,
|
||||||
|
dotfile = 0,
|
||||||
|
custom = 0,
|
||||||
|
bookmark = 0,
|
||||||
|
}, hidden_stats or {})
|
||||||
|
|
||||||
-- priority order
|
local ok, result = pcall(hidden_display, hidden_stats)
|
||||||
M.decorators = {
|
if not ok then
|
||||||
DecoratorCut:new(opts),
|
notify.warn(
|
||||||
DecoratorCopied:new(opts),
|
"Problem occurred in the function ``opts.renderer.hidden_display`` see nvim-tree.renderer.hidden_display on :h nvim-tree")
|
||||||
DecoratorDiagnostics:new(opts),
|
return nil
|
||||||
DecoratorBookmarks:new(opts),
|
end
|
||||||
DecoratorModified:new(opts),
|
return result
|
||||||
DecoratorOpened:new(opts),
|
end
|
||||||
DecoratorGit:new(opts),
|
end
|
||||||
}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return Builder
|
return Builder
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
local diagnostics = require "nvim-tree.diagnostics"
|
local diagnostics = require("nvim-tree.diagnostics")
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
-- highlight strings for the icons
|
-- highlight strings for the icons
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
|
|
||||||
local function hide(win)
|
local function hide(win)
|
||||||
if win then
|
if win then
|
||||||
@@ -42,7 +42,7 @@ local function show()
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local line = vim.fn.getline "."
|
local line = vim.fn.getline(".")
|
||||||
local leftcol = vim.fn.winsaveview().leftcol
|
local leftcol = vim.fn.winsaveview().leftcol
|
||||||
-- hide full name if left column of node in nvim-tree win is not zero
|
-- hide full name if left column of node in nvim-tree win is not zero
|
||||||
if leftcol ~= 0 then
|
if leftcol ~= 0 then
|
||||||
@@ -81,7 +81,7 @@ local function show()
|
|||||||
|
|
||||||
vim.api.nvim_buf_add_highlight(0, ns_id, details.hl_group, 0, col, details.end_col)
|
vim.api.nvim_buf_add_highlight(0, ns_id, details.hl_group, 0, col, details.end_col)
|
||||||
end
|
end
|
||||||
vim.cmd [[ setlocal nowrap cursorline noswapfile nobuflisted buftype=nofile bufhidden=hide ]]
|
vim.cmd([[ setlocal nowrap cursorline noswapfile nobuflisted buftype=nofile bufhidden=hide ]])
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ end
|
|||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.config = opts.renderer.icons
|
M.config = opts.renderer.icons
|
||||||
|
|
||||||
M.devicons = pcall(require, "nvim-web-devicons") and require "nvim-web-devicons" or nil
|
M.devicons = pcall(require, "nvim-web-devicons") and require("nvim-web-devicons") or nil
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
15
lua/nvim-tree/renderer/components/init.lua
Normal file
15
lua/nvim-tree/renderer/components/init.lua
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
M.diagnostics = require("nvim-tree.renderer.components.diagnostics")
|
||||||
|
M.full_name = require("nvim-tree.renderer.components.full-name")
|
||||||
|
M.icons = require("nvim-tree.renderer.components.icons")
|
||||||
|
M.padding = require("nvim-tree.renderer.components.padding")
|
||||||
|
|
||||||
|
function M.setup(opts)
|
||||||
|
M.diagnostics.setup(opts)
|
||||||
|
M.full_name.setup(opts)
|
||||||
|
M.icons.setup(opts)
|
||||||
|
M.padding.setup(opts)
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
@@ -19,7 +19,7 @@ local function check_siblings_for_folder(node, with_arrows)
|
|||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
local function get_padding_indent_markers(depth, idx, nodes_number, markers, with_arrows, inline_arrows, node)
|
local function get_padding_indent_markers(depth, idx, nodes_number, markers, with_arrows, inline_arrows, node, early_stop)
|
||||||
local base_padding = with_arrows and (not node.nodes or depth > 0) and " " or ""
|
local base_padding = with_arrows and (not node.nodes or depth > 0) and " " or ""
|
||||||
local padding = (inline_arrows or depth == 0) and base_padding or ""
|
local padding = (inline_arrows or depth == 0) and base_padding or ""
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ local function get_padding_indent_markers(depth, idx, nodes_number, markers, wit
|
|||||||
local has_folder_sibling = check_siblings_for_folder(node, with_arrows)
|
local has_folder_sibling = check_siblings_for_folder(node, with_arrows)
|
||||||
local indent = string.rep(" ", M.config.indent_width - 1)
|
local indent = string.rep(" ", M.config.indent_width - 1)
|
||||||
markers[depth] = idx ~= nodes_number
|
markers[depth] = idx ~= nodes_number
|
||||||
for i = 1, depth do
|
for i = 1, depth - early_stop do
|
||||||
local glyph
|
local glyph
|
||||||
if idx == nodes_number and i == depth then
|
if idx == nodes_number and i == depth then
|
||||||
local bottom_width = M.config.indent_width - 2 + (with_arrows and not inline_arrows and has_folder_sibling and 2 or 0)
|
local bottom_width = M.config.indent_width - 2 + (with_arrows and not inline_arrows and has_folder_sibling and 2 or 0)
|
||||||
@@ -62,7 +62,7 @@ end
|
|||||||
---@param node table
|
---@param node table
|
||||||
---@param markers table
|
---@param markers table
|
||||||
---@return HighlightedString[]
|
---@return HighlightedString[]
|
||||||
function M.get_indent_markers(depth, idx, nodes_number, node, markers)
|
function M.get_indent_markers(depth, idx, nodes_number, node, markers, early_stop)
|
||||||
local str = ""
|
local str = ""
|
||||||
|
|
||||||
local show_arrows = M.config.icons.show.folder_arrow
|
local show_arrows = M.config.icons.show.folder_arrow
|
||||||
@@ -71,7 +71,7 @@ function M.get_indent_markers(depth, idx, nodes_number, node, markers)
|
|||||||
local indent_width = M.config.indent_width
|
local indent_width = M.config.indent_width
|
||||||
|
|
||||||
if show_markers then
|
if show_markers then
|
||||||
str = str .. get_padding_indent_markers(depth, idx, nodes_number, markers, show_arrows, inline_arrows, node)
|
str = str .. get_padding_indent_markers(depth, idx, nodes_number, markers, show_arrows, inline_arrows, node, early_stop or 0)
|
||||||
else
|
else
|
||||||
str = str .. string.rep(" ", depth * indent_width)
|
str = str .. string.rep(" ", depth * indent_width)
|
||||||
end
|
end
|
||||||
@@ -117,7 +117,7 @@ function M.setup(opts)
|
|||||||
return " "
|
return " "
|
||||||
end
|
end
|
||||||
-- return the first character from the UTF-8 encoded string; we may use utf8.codes from Lua 5.3 when available
|
-- return the first character from the UTF-8 encoded string; we may use utf8.codes from Lua 5.3 when available
|
||||||
return symbol:match "[%z\1-\127\194-\244][\128-\191]*"
|
return symbol:match("[%z\1-\127\194-\244][\128-\191]*")
|
||||||
end
|
end
|
||||||
|
|
||||||
for k, v in pairs(M.config.indent_markers.icons) do
|
for k, v in pairs(M.config.indent_markers.icons) do
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
local marks = require "nvim-tree.marks"
|
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
local Decorator = require "nvim-tree.renderer.decorator"
|
local Decorator = require("nvim-tree.renderer.decorator")
|
||||||
|
|
||||||
---@class DecoratorBookmarks: Decorator
|
---@class (exact) DecoratorBookmarks: Decorator
|
||||||
---@field icon HighlightedString
|
---@field icon HighlightedString
|
||||||
local DecoratorBookmarks = Decorator:new()
|
local DecoratorBookmarks = Decorator:new()
|
||||||
|
|
||||||
---@param opts table
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
---@return DecoratorBookmarks
|
---@return DecoratorBookmarks
|
||||||
function DecoratorBookmarks:new(opts)
|
function DecoratorBookmarks:new(opts, explorer)
|
||||||
local o = Decorator.new(self, {
|
local o = Decorator.new(self, {
|
||||||
|
explorer = explorer,
|
||||||
enabled = true,
|
enabled = true,
|
||||||
hl_pos = HL_POSITION[opts.renderer.highlight_bookmarks] or HL_POSITION.none,
|
hl_pos = HL_POSITION[opts.renderer.highlight_bookmarks] or HL_POSITION.none,
|
||||||
icon_placement = ICON_PLACEMENT[opts.renderer.icons.bookmarks_placement] or ICON_PLACEMENT.none,
|
icon_placement = ICON_PLACEMENT[opts.renderer.icons.bookmarks_placement] or ICON_PLACEMENT.none,
|
||||||
@@ -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 marks.get_mark(node) then
|
if self.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 marks.get_mark(node) then
|
if self.hl_pos ~= HL_POSITION.none and self.explorer.marks:get(node) then
|
||||||
return "NvimTreeBookmarkHL"
|
return "NvimTreeBookmarkHL"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,28 +1,25 @@
|
|||||||
local copy_paste
|
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
local Decorator = require "nvim-tree.renderer.decorator"
|
local Decorator = require("nvim-tree.renderer.decorator")
|
||||||
|
|
||||||
---@class DecoratorCopied: Decorator
|
---@class (exact) DecoratorCopied: Decorator
|
||||||
---@field enabled boolean
|
---@field enabled boolean
|
||||||
---@field icon HighlightedString|nil
|
---@field icon HighlightedString|nil
|
||||||
local DecoratorCopied = Decorator:new()
|
local DecoratorCopied = Decorator:new()
|
||||||
|
|
||||||
---@param opts table
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
---@return DecoratorCopied
|
---@return DecoratorCopied
|
||||||
function DecoratorCopied:new(opts)
|
function DecoratorCopied:new(opts, explorer)
|
||||||
local o = Decorator.new(self, {
|
local o = Decorator.new(self, {
|
||||||
|
explorer = explorer,
|
||||||
enabled = true,
|
enabled = true,
|
||||||
hl_pos = HL_POSITION[opts.renderer.highlight_clipboard] or HL_POSITION.none,
|
hl_pos = HL_POSITION[opts.renderer.highlight_clipboard] or HL_POSITION.none,
|
||||||
icon_placement = ICON_PLACEMENT.none,
|
icon_placement = ICON_PLACEMENT.none,
|
||||||
})
|
})
|
||||||
---@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 self.explorer.clipboard:is_copied(node) then
|
||||||
return "NvimTreeCopiedHL"
|
return "NvimTreeCopiedHL"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,28 +1,25 @@
|
|||||||
local copy_paste
|
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
local Decorator = require "nvim-tree.renderer.decorator"
|
local Decorator = require("nvim-tree.renderer.decorator")
|
||||||
|
|
||||||
---@class DecoratorCut: Decorator
|
---@class (exact) DecoratorCut: Decorator
|
||||||
---@field enabled boolean
|
---@field enabled boolean
|
||||||
---@field icon HighlightedString|nil
|
---@field icon HighlightedString|nil
|
||||||
local DecoratorCut = Decorator:new()
|
local DecoratorCut = Decorator:new()
|
||||||
|
|
||||||
---@param opts table
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
---@return DecoratorCut
|
---@return DecoratorCut
|
||||||
function DecoratorCut:new(opts)
|
function DecoratorCut:new(opts, explorer)
|
||||||
local o = Decorator.new(self, {
|
local o = Decorator.new(self, {
|
||||||
|
explorer = explorer,
|
||||||
enabled = true,
|
enabled = true,
|
||||||
hl_pos = HL_POSITION[opts.renderer.highlight_clipboard] or HL_POSITION.none,
|
hl_pos = HL_POSITION[opts.renderer.highlight_clipboard] or HL_POSITION.none,
|
||||||
icon_placement = ICON_PLACEMENT.none,
|
icon_placement = ICON_PLACEMENT.none,
|
||||||
})
|
})
|
||||||
---@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 self.explorer.clipboard:is_cut(node) then
|
||||||
return "NvimTreeCutHL"
|
return "NvimTreeCutHL"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
local diagnostics = require "nvim-tree.diagnostics"
|
local diagnostics = require("nvim-tree.diagnostics")
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
local Decorator = require "nvim-tree.renderer.decorator"
|
local Decorator = require("nvim-tree.renderer.decorator")
|
||||||
|
|
||||||
-- highlight groups by severity
|
-- highlight groups by severity
|
||||||
local HG_ICON = {
|
local HG_ICON = {
|
||||||
@@ -32,14 +32,16 @@ local ICON_KEYS = {
|
|||||||
["hint"] = vim.diagnostic.severity.HINT,
|
["hint"] = vim.diagnostic.severity.HINT,
|
||||||
}
|
}
|
||||||
|
|
||||||
---@class DecoratorDiagnostics: Decorator
|
---@class (exact) DecoratorDiagnostics: Decorator
|
||||||
---@field icons HighlightedString[]
|
---@field icons HighlightedString[]
|
||||||
local DecoratorDiagnostics = Decorator:new()
|
local DecoratorDiagnostics = Decorator:new()
|
||||||
|
|
||||||
---@param opts table
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
---@return DecoratorDiagnostics
|
---@return DecoratorDiagnostics
|
||||||
function DecoratorDiagnostics:new(opts)
|
function DecoratorDiagnostics:new(opts, explorer)
|
||||||
local o = Decorator.new(self, {
|
local o = Decorator.new(self, {
|
||||||
|
explorer = explorer,
|
||||||
enabled = opts.diagnostics.enable,
|
enabled = opts.diagnostics.enable,
|
||||||
hl_pos = HL_POSITION[opts.renderer.highlight_diagnostics] or HL_POSITION.none,
|
hl_pos = HL_POSITION[opts.renderer.highlight_diagnostics] or HL_POSITION.none,
|
||||||
icon_placement = ICON_PLACEMENT[opts.renderer.icons.diagnostics_placement] or ICON_PLACEMENT.none,
|
icon_placement = ICON_PLACEMENT[opts.renderer.icons.diagnostics_placement] or ICON_PLACEMENT.none,
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
local explorer_node = require("nvim-tree.explorer.node")
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
local Decorator = require "nvim-tree.renderer.decorator"
|
local Decorator = require("nvim-tree.renderer.decorator")
|
||||||
|
|
||||||
---@class HighlightedStringGit: HighlightedString
|
---@class HighlightedStringGit: HighlightedString
|
||||||
---@field ord number decreasing priority
|
---@field ord number decreasing priority
|
||||||
|
|
||||||
---@class DecoratorGit: Decorator
|
---@class (exact) DecoratorGit: Decorator
|
||||||
---@field file_hl table<string, string> by porcelain status e.g. "AM"
|
---@field file_hl table<string, string> by porcelain status e.g. "AM"
|
||||||
---@field folder_hl table<string, string> by porcelain status
|
---@field folder_hl table<string, string> by porcelain status
|
||||||
---@field icons_by_status HighlightedStringGit[] by human status
|
---@field icons_by_status HighlightedStringGit[] by human status
|
||||||
@@ -17,9 +17,11 @@ local Decorator = require "nvim-tree.renderer.decorator"
|
|||||||
local DecoratorGit = Decorator:new()
|
local DecoratorGit = Decorator:new()
|
||||||
|
|
||||||
---@param opts table
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
---@return DecoratorGit
|
---@return DecoratorGit
|
||||||
function DecoratorGit:new(opts)
|
function DecoratorGit:new(opts, explorer)
|
||||||
local o = Decorator.new(self, {
|
local o = Decorator.new(self, {
|
||||||
|
explorer = explorer,
|
||||||
enabled = opts.git.enable,
|
enabled = opts.git.enable,
|
||||||
hl_pos = HL_POSITION[opts.renderer.highlight_git] or HL_POSITION.none,
|
hl_pos = HL_POSITION[opts.renderer.highlight_git] or HL_POSITION.none,
|
||||||
icon_placement = ICON_PLACEMENT[opts.renderer.icons.git_placement] or ICON_PLACEMENT.none,
|
icon_placement = ICON_PLACEMENT[opts.renderer.icons.git_placement] or ICON_PLACEMENT.none,
|
||||||
|
|||||||
57
lua/nvim-tree/renderer/decorator/hidden.lua
Normal file
57
lua/nvim-tree/renderer/decorator/hidden.lua
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
local explorer_node = require("nvim-tree.explorer.node")
|
||||||
|
local Decorator = require("nvim-tree.renderer.decorator")
|
||||||
|
|
||||||
|
---@class (exact) DecoratorHidden: Decorator
|
||||||
|
---@field icon HighlightedString|nil
|
||||||
|
local DecoratorHidden = Decorator:new()
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
|
---@return DecoratorHidden
|
||||||
|
function DecoratorHidden:new(opts, explorer)
|
||||||
|
local o = Decorator.new(self, {
|
||||||
|
explorer = explorer,
|
||||||
|
enabled = true,
|
||||||
|
hl_pos = HL_POSITION[opts.renderer.highlight_hidden] or HL_POSITION.none,
|
||||||
|
icon_placement = ICON_PLACEMENT[opts.renderer.icons.hidden_placement] or ICON_PLACEMENT.none,
|
||||||
|
})
|
||||||
|
---@cast o DecoratorHidden
|
||||||
|
|
||||||
|
if opts.renderer.icons.show.hidden then
|
||||||
|
o.icon = {
|
||||||
|
str = opts.renderer.icons.glyphs.hidden,
|
||||||
|
hl = { "NvimTreeHiddenIcon" },
|
||||||
|
}
|
||||||
|
o:define_sign(o.icon)
|
||||||
|
end
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Hidden icon: renderer.icons.show.hidden and node starts with `.` (dotfile).
|
||||||
|
---@param node Node
|
||||||
|
---@return HighlightedString[]|nil icons
|
||||||
|
function DecoratorHidden:calculate_icons(node)
|
||||||
|
if self.enabled and explorer_node.is_dotfile(node) then
|
||||||
|
return { self.icon }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Hidden highlight: renderer.highlight_hidden and node starts with `.` (dotfile).
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil group
|
||||||
|
function DecoratorHidden:calculate_highlight(node)
|
||||||
|
if not self.enabled or self.hl_pos == HL_POSITION.none or (not explorer_node.is_dotfile(node)) then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
if node.nodes then
|
||||||
|
return "NvimTreeHiddenFolderHL"
|
||||||
|
else
|
||||||
|
return "NvimTreeHiddenFileHL"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return DecoratorHidden
|
||||||
@@ -1,7 +1,9 @@
|
|||||||
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
|
||||||
|
|
||||||
---@class Decorator
|
---@class (exact) Decorator
|
||||||
|
---@field private __index? table
|
||||||
|
---@field protected explorer Explorer
|
||||||
---@field protected enabled boolean
|
---@field protected enabled boolean
|
||||||
---@field protected hl_pos HL_POSITION
|
---@field protected hl_pos HL_POSITION
|
||||||
---@field protected icon_placement ICON_PLACEMENT
|
---@field protected icon_placement ICON_PLACEMENT
|
||||||
@@ -11,6 +13,7 @@ local Decorator = {}
|
|||||||
---@return Decorator
|
---@return Decorator
|
||||||
function Decorator:new(o)
|
function Decorator:new(o)
|
||||||
o = o or {}
|
o = o or {}
|
||||||
|
|
||||||
setmetatable(o, self)
|
setmetatable(o, self)
|
||||||
self.__index = self
|
self.__index = self
|
||||||
|
|
||||||
@@ -74,6 +77,17 @@ function Decorator:icons_after(node)
|
|||||||
return self:calculate_icons(node)
|
return self:calculate_icons(node)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---Icons when ICON_PLACEMENT.right_align
|
||||||
|
---@param node Node
|
||||||
|
---@return HighlightedString[]|nil icons
|
||||||
|
function Decorator:icons_right_align(node)
|
||||||
|
if not self.enabled or self.icon_placement ~= ICON_PLACEMENT.right_align then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
return self:calculate_icons(node)
|
||||||
|
end
|
||||||
|
|
||||||
---Maybe icons, optionally implemented
|
---Maybe icons, optionally implemented
|
||||||
---@protected
|
---@protected
|
||||||
---@param _ Node
|
---@param _ Node
|
||||||
|
|||||||
@@ -1,18 +1,20 @@
|
|||||||
local buffers = require "nvim-tree.buffers"
|
local buffers = require("nvim-tree.buffers")
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
local Decorator = require "nvim-tree.renderer.decorator"
|
local Decorator = require("nvim-tree.renderer.decorator")
|
||||||
|
|
||||||
---@class DecoratorModified: Decorator
|
---@class (exact) DecoratorModified: Decorator
|
||||||
---@field icon HighlightedString|nil
|
---@field icon HighlightedString|nil
|
||||||
local DecoratorModified = Decorator:new()
|
local DecoratorModified = Decorator:new()
|
||||||
|
|
||||||
---@param opts table
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
---@return DecoratorModified
|
---@return DecoratorModified
|
||||||
function DecoratorModified:new(opts)
|
function DecoratorModified:new(opts, explorer)
|
||||||
local o = Decorator.new(self, {
|
local o = Decorator.new(self, {
|
||||||
|
explorer = explorer,
|
||||||
enabled = opts.modified.enable,
|
enabled = opts.modified.enable,
|
||||||
hl_pos = HL_POSITION[opts.renderer.highlight_modified] or HL_POSITION.none,
|
hl_pos = HL_POSITION[opts.renderer.highlight_modified] or HL_POSITION.none,
|
||||||
icon_placement = ICON_PLACEMENT[opts.renderer.icons.modified_placement] or ICON_PLACEMENT.none,
|
icon_placement = ICON_PLACEMENT[opts.renderer.icons.modified_placement] or ICON_PLACEMENT.none,
|
||||||
|
|||||||
@@ -1,19 +1,21 @@
|
|||||||
local buffers = require "nvim-tree.buffers"
|
local buffers = require("nvim-tree.buffers")
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
local Decorator = require "nvim-tree.renderer.decorator"
|
local Decorator = require("nvim-tree.renderer.decorator")
|
||||||
|
|
||||||
---@class DecoratorOpened: Decorator
|
---@class (exact) DecoratorOpened: Decorator
|
||||||
---@field enabled boolean
|
---@field enabled boolean
|
||||||
---@field icon HighlightedString|nil
|
---@field icon HighlightedString|nil
|
||||||
local DecoratorOpened = Decorator:new()
|
local DecoratorOpened = Decorator:new()
|
||||||
|
|
||||||
---@param opts table
|
---@param opts table
|
||||||
|
---@param explorer Explorer
|
||||||
---@return DecoratorOpened
|
---@return DecoratorOpened
|
||||||
function DecoratorOpened:new(opts)
|
function DecoratorOpened:new(opts, explorer)
|
||||||
local o = Decorator.new(self, {
|
local o = Decorator.new(self, {
|
||||||
|
explorer = explorer,
|
||||||
enabled = true,
|
enabled = true,
|
||||||
hl_pos = HL_POSITION[opts.renderer.highlight_opened_files] or HL_POSITION.none,
|
hl_pos = HL_POSITION[opts.renderer.highlight_opened_files] or HL_POSITION.none,
|
||||||
icon_placement = ICON_PLACEMENT.none,
|
icon_placement = ICON_PLACEMENT.none,
|
||||||
|
|||||||
@@ -1,34 +1,57 @@
|
|||||||
local core = require "nvim-tree.core"
|
local log = require("nvim-tree.log")
|
||||||
local log = require "nvim-tree.log"
|
local view = require("nvim-tree.view")
|
||||||
local view = require "nvim-tree.view"
|
local events = require("nvim-tree.events")
|
||||||
local events = require "nvim-tree.events"
|
|
||||||
|
|
||||||
local _padding = require "nvim-tree.renderer.components.padding"
|
local icon_component = require("nvim-tree.renderer.components.icons")
|
||||||
local icon_component = require "nvim-tree.renderer.components.icons"
|
|
||||||
local full_name = require "nvim-tree.renderer.components.full-name"
|
|
||||||
local Builder = require "nvim-tree.renderer.builder"
|
|
||||||
|
|
||||||
local M = {}
|
local Builder = require("nvim-tree.renderer.builder")
|
||||||
|
|
||||||
local SIGN_GROUP = "NvimTreeRendererSigns"
|
local SIGN_GROUP = "NvimTreeRendererSigns"
|
||||||
|
|
||||||
local namespace_id = vim.api.nvim_create_namespace "NvimTreeHighlights"
|
local namespace_highlights_id = vim.api.nvim_create_namespace("NvimTreeHighlights")
|
||||||
|
local namespace_extmarks_id = vim.api.nvim_create_namespace("NvimTreeExtmarks")
|
||||||
|
local namespace_virtual_lines_id = vim.api.nvim_create_namespace("NvimTreeVirtualLines")
|
||||||
|
|
||||||
|
---@class (exact) Renderer
|
||||||
|
---@field private __index? table
|
||||||
|
---@field private opts table user options
|
||||||
|
---@field private explorer Explorer
|
||||||
|
---@field private builder Builder
|
||||||
|
local Renderer = {}
|
||||||
|
|
||||||
|
---@param opts table user options
|
||||||
|
---@param explorer Explorer
|
||||||
|
---@return Renderer
|
||||||
|
function Renderer:new(opts, explorer)
|
||||||
|
---@type Renderer
|
||||||
|
local o = {
|
||||||
|
opts = opts,
|
||||||
|
explorer = explorer,
|
||||||
|
builder = Builder:new(opts, explorer),
|
||||||
|
}
|
||||||
|
|
||||||
|
setmetatable(o, self)
|
||||||
|
self.__index = self
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
---@param bufnr number
|
---@param bufnr number
|
||||||
---@param lines string[]
|
---@param lines string[]
|
||||||
---@param hl_args AddHighlightArgs[]
|
---@param hl_args AddHighlightArgs[]
|
||||||
---@param signs string[]
|
---@param signs string[]
|
||||||
local function _draw(bufnr, lines, hl_args, signs)
|
function Renderer:_draw(bufnr, lines, hl_args, signs, extmarks, virtual_lines)
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("modifiable", true, { buf = bufnr })
|
vim.api.nvim_set_option_value("modifiable", true, { buf = bufnr })
|
||||||
else
|
else
|
||||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", true) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_buf_set_option(bufnr, "modifiable", true) ---@diagnostic disable-line: deprecated
|
||||||
end
|
end
|
||||||
|
|
||||||
vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, lines)
|
vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, lines)
|
||||||
M.render_hl(bufnr, hl_args)
|
self:render_hl(bufnr, hl_args)
|
||||||
|
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
vim.api.nvim_set_option_value("modifiable", false, { buf = bufnr })
|
vim.api.nvim_set_option_value("modifiable", false, { buf = bufnr })
|
||||||
else
|
else
|
||||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
vim.api.nvim_buf_set_option(bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
||||||
@@ -38,36 +61,57 @@ local function _draw(bufnr, lines, hl_args, signs)
|
|||||||
for i, sign_name in pairs(signs) do
|
for i, sign_name in pairs(signs) do
|
||||||
vim.fn.sign_place(0, SIGN_GROUP, sign_name, bufnr, { lnum = i + 1 })
|
vim.fn.sign_place(0, SIGN_GROUP, sign_name, bufnr, { lnum = i + 1 })
|
||||||
end
|
end
|
||||||
|
|
||||||
|
vim.api.nvim_buf_clear_namespace(bufnr, namespace_extmarks_id, 0, -1)
|
||||||
|
for i, extname in pairs(extmarks) do
|
||||||
|
for _, mark in ipairs(extname) do
|
||||||
|
vim.api.nvim_buf_set_extmark(bufnr, namespace_extmarks_id, i, -1, {
|
||||||
|
virt_text = { { mark.str, mark.hl } },
|
||||||
|
virt_text_pos = "right_align",
|
||||||
|
hl_mode = "combine",
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.api.nvim_buf_clear_namespace(bufnr, namespace_virtual_lines_id, 0, -1)
|
||||||
|
for line_nr, vlines in pairs(virtual_lines) do
|
||||||
|
vim.api.nvim_buf_set_extmark(bufnr, namespace_virtual_lines_id, line_nr, 0, {
|
||||||
|
virt_lines = vlines,
|
||||||
|
virt_lines_above = false,
|
||||||
|
virt_lines_leftcol = true,
|
||||||
|
})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.render_hl(bufnr, hl)
|
---@private
|
||||||
|
function Renderer:render_hl(bufnr, hl)
|
||||||
if not bufnr or not vim.api.nvim_buf_is_loaded(bufnr) then
|
if not bufnr or not vim.api.nvim_buf_is_loaded(bufnr) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
vim.api.nvim_buf_clear_namespace(bufnr, namespace_id, 0, -1)
|
vim.api.nvim_buf_clear_namespace(bufnr, namespace_highlights_id, 0, -1)
|
||||||
for _, data in ipairs(hl) do
|
for _, data in ipairs(hl) do
|
||||||
if type(data[1]) == "table" then
|
if type(data[1]) == "table" then
|
||||||
for _, group in ipairs(data[1]) do
|
for _, group in ipairs(data[1]) do
|
||||||
vim.api.nvim_buf_add_highlight(bufnr, namespace_id, group, data[2], data[3], data[4])
|
vim.api.nvim_buf_add_highlight(bufnr, namespace_highlights_id, group, data[2], data[3], data[4])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.draw()
|
function Renderer:draw()
|
||||||
local bufnr = view.get_bufnr()
|
local bufnr = view.get_bufnr()
|
||||||
if not core.get_explorer() or not bufnr or not vim.api.nvim_buf_is_loaded(bufnr) then
|
if not bufnr or not vim.api.nvim_buf_is_loaded(bufnr) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local profile = log.profile_start "draw"
|
local profile = log.profile_start("draw")
|
||||||
|
|
||||||
local cursor = vim.api.nvim_win_get_cursor(view.get_winnr() or 0)
|
local cursor = vim.api.nvim_win_get_cursor(view.get_winnr() or 0)
|
||||||
icon_component.reset_config()
|
icon_component.reset_config()
|
||||||
|
|
||||||
local builder = Builder:new():build()
|
local builder = Builder:new(self.opts, self.explorer):build()
|
||||||
|
|
||||||
_draw(bufnr, builder.lines, builder.hl_args, builder.signs)
|
self:_draw(bufnr, builder.lines, builder.hl_args, builder.signs, builder.extmarks, builder.virtual_lines)
|
||||||
|
|
||||||
if cursor and #builder.lines >= cursor[1] then
|
if cursor and #builder.lines >= cursor[1] then
|
||||||
vim.api.nvim_win_set_cursor(view.get_winnr() or 0, cursor)
|
vim.api.nvim_win_set_cursor(view.get_winnr() or 0, cursor)
|
||||||
@@ -80,14 +124,4 @@ function M.draw()
|
|||||||
events._dispatch_on_tree_rendered(bufnr, view.get_winnr())
|
events._dispatch_on_tree_rendered(bufnr, view.get_winnr())
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
return Renderer
|
||||||
M.config = opts.renderer
|
|
||||||
|
|
||||||
_padding.setup(opts)
|
|
||||||
full_name.setup(opts)
|
|
||||||
icon_component.setup(opts)
|
|
||||||
|
|
||||||
Builder.setup(opts)
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
local Iterator = require("nvim-tree.iterators.node-iterator")
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
debouncers = {},
|
debouncers = {},
|
||||||
}
|
}
|
||||||
|
|
||||||
M.is_unix = vim.fn.has "unix" == 1
|
M.is_unix = vim.fn.has("unix") == 1
|
||||||
M.is_macos = vim.fn.has "mac" == 1 or vim.fn.has "macunix" == 1
|
M.is_macos = vim.fn.has("mac") == 1 or vim.fn.has("macunix") == 1
|
||||||
M.is_wsl = vim.fn.has "wsl" == 1
|
M.is_wsl = vim.fn.has("wsl") == 1
|
||||||
-- false for WSL
|
-- false for WSL
|
||||||
M.is_windows = vim.fn.has "win32" == 1 or vim.fn.has "win32unix" == 1
|
M.is_windows = vim.fn.has("win32") == 1 or vim.fn.has("win32unix") == 1
|
||||||
|
|
||||||
---@param haystack string
|
---@param haystack string
|
||||||
---@param needle string
|
---@param needle string
|
||||||
@@ -112,7 +112,10 @@ function M.find_node(nodes, fn)
|
|||||||
end)
|
end)
|
||||||
:iterate()
|
:iterate()
|
||||||
i = require("nvim-tree.view").is_root_folder_visible() and i or i - 1
|
i = require("nvim-tree.view").is_root_folder_visible() and i or i - 1
|
||||||
i = require("nvim-tree.live-filter").filter and i + 1 or i
|
local explorer = require("nvim-tree.core").get_explorer()
|
||||||
|
if explorer and explorer.live_filter.filter then
|
||||||
|
i = i + 1
|
||||||
|
end
|
||||||
return node, i
|
return node, i
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -181,6 +184,26 @@ function M.get_parent_of_group(node)
|
|||||||
return node
|
return node
|
||||||
end
|
end
|
||||||
|
|
||||||
|
M.default_format_hidden_count = function(hidden_count, simple)
|
||||||
|
local parts = {}
|
||||||
|
local total_count = 0
|
||||||
|
for reason, count in pairs(hidden_count) do
|
||||||
|
total_count = total_count + count
|
||||||
|
if count > 0 then
|
||||||
|
table.insert(parts, reason .. ": " .. tostring(count))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local hidden_count_string = table.concat(parts, ", ") -- if empty then is "" (empty string)
|
||||||
|
if simple then
|
||||||
|
hidden_count_string = ""
|
||||||
|
end
|
||||||
|
if total_count > 0 then
|
||||||
|
return "(" .. tostring(total_count) .. (simple and " hidden" or " total ") .. hidden_count_string .. ")"
|
||||||
|
end
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
--- Return visible nodes indexed by line
|
--- Return visible nodes indexed by line
|
||||||
---@param nodes_all Node[]
|
---@param nodes_all Node[]
|
||||||
---@param line_start number
|
---@param line_start number
|
||||||
@@ -227,7 +250,7 @@ function M.rename_loaded_buffers(old_path, new_path)
|
|||||||
-- to avoid the 'overwrite existing file' error message on write for
|
-- to avoid the 'overwrite existing file' error message on write for
|
||||||
-- normal files
|
-- normal files
|
||||||
local buftype
|
local buftype
|
||||||
if vim.fn.has "nvim-0.10" == 1 then
|
if vim.fn.has("nvim-0.10") == 1 then
|
||||||
buftype = vim.api.nvim_get_option_value("buftype", { buf = buf })
|
buftype = vim.api.nvim_get_option_value("buftype", { buf = buf })
|
||||||
else
|
else
|
||||||
buftype = vim.api.nvim_buf_get_option(buf, "buftype") ---@diagnostic disable-line: deprecated
|
buftype = vim.api.nvim_buf_get_option(buf, "buftype") ---@diagnostic disable-line: deprecated
|
||||||
@@ -235,8 +258,8 @@ function M.rename_loaded_buffers(old_path, new_path)
|
|||||||
|
|
||||||
if buftype == "" then
|
if buftype == "" then
|
||||||
vim.api.nvim_buf_call(buf, function()
|
vim.api.nvim_buf_call(buf, function()
|
||||||
vim.cmd "silent! write!"
|
vim.cmd("silent! write!")
|
||||||
vim.cmd "edit"
|
vim.cmd("edit")
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -254,7 +277,7 @@ end
|
|||||||
---@param path string
|
---@param path string
|
||||||
---@return string
|
---@return string
|
||||||
function M.canonical_path(path)
|
function M.canonical_path(path)
|
||||||
if M.is_windows and path:match "^%a:" then
|
if M.is_windows and path:match("^%a:") then
|
||||||
return path:sub(1, 1):upper() .. path:sub(2)
|
return path:sub(1, 1):upper() .. path:sub(2)
|
||||||
end
|
end
|
||||||
return path
|
return path
|
||||||
@@ -267,7 +290,7 @@ function M.escape_special_chars(path)
|
|||||||
if path == nil then
|
if path == nil then
|
||||||
return path
|
return path
|
||||||
end
|
end
|
||||||
return M.is_windows and path:gsub("%(", "\\("):gsub("%)", "\\)") or path
|
return M.is_windows and path:gsub("\\", "/") or path
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Create empty sub-tables if not present
|
--- Create empty sub-tables if not present
|
||||||
@@ -444,7 +467,7 @@ function M.focus_file(path)
|
|||||||
local _, i = M.find_node(require("nvim-tree.core").get_explorer().nodes, function(node)
|
local _, i = M.find_node(require("nvim-tree.core").get_explorer().nodes, function(node)
|
||||||
return node.absolute_path == path
|
return node.absolute_path == path
|
||||||
end)
|
end)
|
||||||
require("nvim-tree.view").set_cursor { i + 1, 1 }
|
require("nvim-tree.view").set_cursor({ i + 1, 1 })
|
||||||
end
|
end
|
||||||
|
|
||||||
---Focus node passed as parameter if visible, otherwise focus first visible parent.
|
---Focus node passed as parameter if visible, otherwise focus first visible parent.
|
||||||
@@ -464,7 +487,7 @@ function M.focus_node_or_parent(node)
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
if found_node or node.parent == nil then
|
if found_node or node.parent == nil then
|
||||||
require("nvim-tree.view").set_cursor { i + 1, 1 }
|
require("nvim-tree.view").set_cursor({ i + 1, 1 })
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -487,7 +510,7 @@ end
|
|||||||
|
|
||||||
function M.clear_prompt()
|
function M.clear_prompt()
|
||||||
if vim.opt.cmdheight._value ~= 0 then
|
if vim.opt.cmdheight._value ~= 0 then
|
||||||
vim.cmd "normal! :"
|
vim.cmd("normal! :")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -544,7 +567,7 @@ function M.is_nvim_tree_buf(bufnr)
|
|||||||
end
|
end
|
||||||
if vim.api.nvim_buf_is_valid(bufnr) then
|
if vim.api.nvim_buf_is_valid(bufnr) then
|
||||||
local bufname = vim.api.nvim_buf_get_name(bufnr)
|
local bufname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
if vim.fn.fnamemodify(bufname, ":t"):match "^NvimTree_[0-9]+$" then
|
if vim.fn.fnamemodify(bufname, ":t"):match("^NvimTree_[0-9]+$") then
|
||||||
if vim.bo[bufnr].filetype == "NvimTree" then
|
if vim.bo[bufnr].filetype == "NvimTree" then
|
||||||
return true
|
return true
|
||||||
elseif vim.fn.filereadable(bufname) == 0 then
|
elseif vim.fn.filereadable(bufname) == 0 then
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
local events = require "nvim-tree.events"
|
local events = require("nvim-tree.events")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
|
local notify = require("nvim-tree.notify")
|
||||||
|
|
||||||
---@class OpenInWinOpts
|
---@class OpenInWinOpts
|
||||||
---@field hijack_current_buf boolean|nil default true
|
---@field hijack_current_buf boolean|nil default true
|
||||||
@@ -50,6 +51,7 @@ M.View = {
|
|||||||
"Normal:NvimTreeNormal",
|
"Normal:NvimTreeNormal",
|
||||||
"NormalNC:NvimTreeNormalNC",
|
"NormalNC:NvimTreeNormalNC",
|
||||||
"NormalFloat:NvimTreeNormalFloat",
|
"NormalFloat:NvimTreeNormalFloat",
|
||||||
|
"FloatBorder:NvimTreeNormalFloatBorder",
|
||||||
}, ","),
|
}, ","),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@@ -165,7 +167,7 @@ local function open_window()
|
|||||||
if M.View.float.enable then
|
if M.View.float.enable then
|
||||||
vim.api.nvim_open_win(0, true, open_win_config())
|
vim.api.nvim_open_win(0, true, open_win_config())
|
||||||
else
|
else
|
||||||
vim.api.nvim_command "vsp"
|
vim.api.nvim_command("vsp")
|
||||||
M.reposition_window()
|
M.reposition_window()
|
||||||
end
|
end
|
||||||
setup_tabpage(vim.api.nvim_get_current_tabpage())
|
setup_tabpage(vim.api.nvim_get_current_tabpage())
|
||||||
@@ -180,7 +182,7 @@ end
|
|||||||
|
|
||||||
---@return number|nil
|
---@return number|nil
|
||||||
local function get_alt_or_next_buf()
|
local function get_alt_or_next_buf()
|
||||||
local alt_buf = vim.fn.bufnr "#"
|
local alt_buf = vim.fn.bufnr("#")
|
||||||
if is_buf_displayed(alt_buf) then
|
if is_buf_displayed(alt_buf) then
|
||||||
return alt_buf
|
return alt_buf
|
||||||
end
|
end
|
||||||
@@ -198,7 +200,7 @@ local function switch_buf_if_last_buf()
|
|||||||
if buf then
|
if buf then
|
||||||
vim.cmd("sb" .. buf)
|
vim.cmd("sb" .. buf)
|
||||||
else
|
else
|
||||||
vim.cmd "new"
|
vim.cmd("new")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -212,7 +214,7 @@ end
|
|||||||
|
|
||||||
---@param tabpage integer
|
---@param tabpage integer
|
||||||
local function close(tabpage)
|
local function close(tabpage)
|
||||||
if not M.is_visible { tabpage = tabpage } then
|
if not M.is_visible({ tabpage = tabpage }) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
save_tab_state(tabpage)
|
save_tab_state(tabpage)
|
||||||
@@ -221,12 +223,16 @@ local function close(tabpage)
|
|||||||
local current_win = vim.api.nvim_get_current_win()
|
local current_win = vim.api.nvim_get_current_win()
|
||||||
for _, win in pairs(vim.api.nvim_tabpage_list_wins(tabpage)) do
|
for _, win in pairs(vim.api.nvim_tabpage_list_wins(tabpage)) do
|
||||||
if vim.api.nvim_win_get_config(win).relative == "" then
|
if vim.api.nvim_win_get_config(win).relative == "" then
|
||||||
local prev_win = vim.fn.winnr "#" -- this tab only
|
local prev_win = vim.fn.winnr("#") -- this tab only
|
||||||
if tree_win == current_win and prev_win > 0 then
|
if tree_win == current_win and prev_win > 0 then
|
||||||
vim.api.nvim_set_current_win(vim.fn.win_getid(prev_win))
|
vim.api.nvim_set_current_win(vim.fn.win_getid(prev_win))
|
||||||
end
|
end
|
||||||
if vim.api.nvim_win_is_valid(tree_win or 0) then
|
if vim.api.nvim_win_is_valid(tree_win or 0) then
|
||||||
vim.api.nvim_win_close(tree_win or 0, true)
|
local success, error = pcall(vim.api.nvim_win_close, tree_win or 0, true)
|
||||||
|
if not success then
|
||||||
|
notify.debug("Failed to close window: " .. error)
|
||||||
|
return
|
||||||
|
end
|
||||||
end
|
end
|
||||||
events._dispatch_on_tree_close()
|
events._dispatch_on_tree_close()
|
||||||
return
|
return
|
||||||
@@ -258,7 +264,7 @@ function M.open(options)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local profile = log.profile_start "view open"
|
local profile = log.profile_start("view open")
|
||||||
|
|
||||||
create_buffer()
|
create_buffer()
|
||||||
open_window()
|
open_window()
|
||||||
@@ -266,7 +272,7 @@ function M.open(options)
|
|||||||
|
|
||||||
local opts = options or { focus_tree = true }
|
local opts = options or { focus_tree = true }
|
||||||
if not opts.focus_tree then
|
if not opts.focus_tree then
|
||||||
vim.cmd "wincmd p"
|
vim.cmd("wincmd p")
|
||||||
end
|
end
|
||||||
events._dispatch_on_tree_open()
|
events._dispatch_on_tree_open()
|
||||||
|
|
||||||
@@ -345,14 +351,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()
|
||||||
@@ -455,7 +465,7 @@ function M.winid(opts)
|
|||||||
if tabpage == 0 then
|
if tabpage == 0 then
|
||||||
tabpage = vim.api.nvim_get_current_tabpage()
|
tabpage = vim.api.nvim_get_current_tabpage()
|
||||||
end
|
end
|
||||||
if M.is_visible { tabpage = tabpage } then
|
if M.is_visible({ tabpage = tabpage }) then
|
||||||
return M.get_winnr(tabpage)
|
return M.get_winnr(tabpage)
|
||||||
else
|
else
|
||||||
return nil
|
return nil
|
||||||
@@ -504,7 +514,7 @@ function M._prevent_buffer_override()
|
|||||||
local curbuf = vim.api.nvim_win_get_buf(curwin)
|
local curbuf = vim.api.nvim_win_get_buf(curwin)
|
||||||
local bufname = vim.api.nvim_buf_get_name(curbuf)
|
local bufname = vim.api.nvim_buf_get_name(curbuf)
|
||||||
|
|
||||||
if not bufname:match "NvimTree" then
|
if not bufname:match("NvimTree") then
|
||||||
for i, tabpage in ipairs(M.View.tabpages) do
|
for i, tabpage in ipairs(M.View.tabpages) do
|
||||||
if tabpage.winnr == view_winnr then
|
if tabpage.winnr == view_winnr then
|
||||||
M.View.tabpages[i] = nil
|
M.View.tabpages[i] = nil
|
||||||
@@ -518,10 +528,15 @@ function M._prevent_buffer_override()
|
|||||||
|
|
||||||
-- patch to avoid the overriding window to be fixed in size
|
-- patch to avoid the overriding window to be fixed in size
|
||||||
-- might need a better patch
|
-- might need a better patch
|
||||||
vim.cmd "setlocal nowinfixwidth"
|
vim.cmd("setlocal nowinfixwidth")
|
||||||
vim.cmd "setlocal nowinfixheight"
|
vim.cmd("setlocal nowinfixheight")
|
||||||
M.open { focus_tree = false }
|
M.open({ focus_tree = false })
|
||||||
require("nvim-tree.renderer").draw()
|
|
||||||
|
local explorer = require("nvim-tree.core").get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.renderer:draw()
|
||||||
|
end
|
||||||
|
|
||||||
pcall(vim.api.nvim_win_close, curwin, { force = true })
|
pcall(vim.api.nvim_win_close, curwin, { force = true })
|
||||||
|
|
||||||
-- to handle opening a file using :e when nvim-tree is on floating mode
|
-- to handle opening a file using :e when nvim-tree is on floating mode
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
local notify = require "nvim-tree.notify"
|
local notify = require("nvim-tree.notify")
|
||||||
local log = require "nvim-tree.log"
|
local log = require("nvim-tree.log")
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require("nvim-tree.utils")
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
config = {},
|
config = {},
|
||||||
@@ -79,7 +79,7 @@ function Event:start()
|
|||||||
rc, _, name = self._fs_event:start(self._path, FS_EVENT_FLAGS, event_cb)
|
rc, _, name = self._fs_event:start(self._path, FS_EVENT_FLAGS, event_cb)
|
||||||
if rc ~= 0 then
|
if rc ~= 0 then
|
||||||
if name == "EMFILE" then
|
if name == "EMFILE" then
|
||||||
M.disable_watchers "fs.inotify.max_user_watches exceeded, see https://github.com/nvim-tree/nvim-tree.lua/wiki/Troubleshooting"
|
M.disable_watchers("fs.inotify.max_user_watches exceeded, see https://github.com/nvim-tree/nvim-tree.lua/wiki/Troubleshooting")
|
||||||
else
|
else
|
||||||
notify.warn(string.format("Could not start the fs_event watcher for path %s : %s", self._path, name))
|
notify.warn(string.format("Could not start the fs_event watcher for path %s : %s", self._path, name))
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user