Compare commits
68 Commits
v0.99
...
nvim-tree-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2086e564c4 | ||
|
|
1cac8005df | ||
|
|
8704b6f7fc | ||
|
|
26632f496e | ||
|
|
5a87ffe35c | ||
|
|
517e4fbb9e | ||
|
|
4c8ddee453 | ||
|
|
4215f33da5 | ||
|
|
2bc725a3eb | ||
|
|
340d3a9795 | ||
|
|
edd4e25fd4 | ||
|
|
78c4c083ed | ||
|
|
acffab931a | ||
|
|
64f61e4c91 | ||
|
|
347e1eb352 | ||
|
|
76db7ed0da | ||
|
|
5a18b98274 | ||
|
|
62008e5cf2 | ||
|
|
ae8e46e8fa | ||
|
|
81eb8d5192 | ||
|
|
d8d3a1590a | ||
|
|
ddd1d6eb21 | ||
|
|
0aca0920f4 | ||
|
|
308f2fcec2 | ||
|
|
2d97059661 | ||
|
|
e508bdc418 | ||
|
|
e20966ae55 | ||
|
|
85c502e907 | ||
|
|
b1bbd4f7dc | ||
|
|
f7c09bd72e | ||
|
|
707b24af91 | ||
|
|
76b98109f6 | ||
|
|
cfea5bd080 | ||
|
|
1fd9c98960 | ||
|
|
164f11db4f | ||
|
|
8f2a50f1cd | ||
|
|
c64becf80c | ||
|
|
3c4267eb50 | ||
|
|
041dbd18f4 | ||
|
|
efafd73efa | ||
|
|
d52fdeb0a3 | ||
|
|
7efaa339d3 | ||
|
|
030defdb65 | ||
|
|
d35a8d5ec6 | ||
|
|
d16246a757 | ||
|
|
863cf832ce | ||
|
|
c7d4650c38 | ||
|
|
4a87b8b46b | ||
|
|
2dbe4ea2b5 | ||
|
|
39e6fef85a | ||
|
|
b278fc25ae | ||
|
|
8cbb1db8e9 | ||
|
|
f39f7b6fcd | ||
|
|
e9ac136a3a | ||
|
|
d9cb432d2c | ||
|
|
fbee8a69a4 | ||
|
|
7bdb220d0f | ||
|
|
48b1d8638f | ||
|
|
75ff64e666 | ||
|
|
74525ac047 | ||
|
|
e9c5abe073 | ||
|
|
f24afa2cef | ||
|
|
b8c3a23e76 | ||
|
|
9f6d3fac82 | ||
|
|
78a5836092 | ||
|
|
86810e5c0b | ||
|
|
5d13cc8205 | ||
|
|
6a99f5af78 |
4
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
4
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@@ -59,9 +59,9 @@ body:
|
|||||||
|
|
||||||
If not provided it is very unlikely that the nvim-tree team will be able to address your issue.
|
If not provided it is very unlikely that the nvim-tree team will be able to address your issue.
|
||||||
|
|
||||||
See [wiki: Clean Room Replication](https://github.com/nvim-tree/nvim-tree.lua/wiki/Troubleshooting#clean-room-replication) for instructions.
|
See [wiki: Clean Room Replication](https://github.com/nvim-tree/nvim-tree.lua/wiki/Troubleshooting#clean-room-replication) for instructions and paste the contents of your `/tmp/nvt-min.lua` here.
|
||||||
|
|
||||||
Please paste the contents of your `/tmp/nvt-min.lua` here."
|
Please do NOT post a configuration that uses other plugin managers such as lazy, see [wiki: Lazy Loading](https://github.com/nvim-tree/nvim-tree.lua/wiki/Installation#lazy-loading)"
|
||||||
render: lua
|
render: lua
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|||||||
74
.github/workflows/ci.yml
vendored
74
.github/workflows/ci.yml
vendored
@@ -2,11 +2,9 @@ name: CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
|
||||||
- '*'
|
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: [master]
|
||||||
- master
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@@ -14,31 +12,81 @@ permissions:
|
|||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ matrix.lua_version }}-${{ github.head_ref || github.ref_name }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
lua_version: [ 5.1 ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: leafo/gh-actions-lua@v10
|
- uses: leafo/gh-actions-lua@v10
|
||||||
with:
|
with:
|
||||||
luaVersion: "5.1"
|
luaVersion: ${{ matrix.lua_version }}
|
||||||
|
|
||||||
- uses: leafo/gh-actions-luarocks@v4
|
- uses: leafo/gh-actions-luarocks@v4
|
||||||
|
|
||||||
- name: luacheck
|
- run: luarocks install luacheck 1.1.1
|
||||||
run: |
|
|
||||||
luarocks install luacheck 1.1.1
|
- run: make lint
|
||||||
luacheck lua
|
|
||||||
|
|
||||||
style:
|
style:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ matrix.stylua_version }}-${{ github.head_ref || github.ref_name }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
stylua_version: [ 0.19.1 ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: stylua
|
- name: stylua
|
||||||
uses: JohnnyMorganz/stylua-action@v3
|
uses: JohnnyMorganz/stylua-action@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
version: "0.19"
|
version: ${{ matrix.stylua_version }}
|
||||||
args: --check lua
|
args: --check lua
|
||||||
|
|
||||||
- name: doc-comments
|
- run: make style-doc
|
||||||
run: ./scripts/doc-comments.sh
|
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ matrix.nvim_version }}-${{ matrix.luals_version }}-${{ github.head_ref || github.ref_name }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
nvim_version: [ stable, nightly ]
|
||||||
|
luals_version: [ 3.9.1 ]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: rhysd/action-setup-vim@v1
|
||||||
|
with:
|
||||||
|
neovim: true
|
||||||
|
version: ${{ matrix.nvim_version }}
|
||||||
|
|
||||||
|
- name: install luals
|
||||||
|
run: |
|
||||||
|
mkdir -p luals
|
||||||
|
curl -L "https://github.com/LuaLS/lua-language-server/releases/download/${{ matrix.luals_version }}/lua-language-server-${{ matrix.luals_version }}-linux-x64.tar.gz" | tar zx --directory luals
|
||||||
|
|
||||||
|
- run: echo "luals/bin" >> "$GITHUB_PATH"
|
||||||
|
|
||||||
|
- name: make check
|
||||||
|
env:
|
||||||
|
VIMRUNTIME: /home/runner/nvim-${{ matrix.nvim_version }}/share/nvim/runtime
|
||||||
|
run: make check
|
||||||
|
|
||||||
|
- run: make help-check
|
||||||
|
|||||||
37
.github/workflows/luarocks-release.yml
vendored
Normal file
37
.github/workflows/luarocks-release.yml
vendored
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
name: Luarocks Release
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
luarocks-upload:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: LuaRocks Upload
|
||||||
|
uses: nvim-neorocks/luarocks-tag-release@v5
|
||||||
|
env:
|
||||||
|
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|
||||||
|
with:
|
||||||
|
summary: A File Explorer For Neovim
|
||||||
|
detailed_description: |
|
||||||
|
Automatic updates
|
||||||
|
|
||||||
|
File type icons
|
||||||
|
|
||||||
|
Git integration
|
||||||
|
|
||||||
|
Diagnostics integration - LSP and COC
|
||||||
|
|
||||||
|
(Live) filtering
|
||||||
|
|
||||||
|
Cut, copy, paste, rename, delete, create etc.
|
||||||
|
|
||||||
|
Highly customisable
|
||||||
|
|
||||||
|
Rich API
|
||||||
|
license: "GPL-3.0"
|
||||||
|
labels: neovim
|
||||||
|
dependencies: |
|
||||||
|
nvim-web-devicons
|
||||||
8
.github/workflows/release-please.yml
vendored
8
.github/workflows/release-please.yml
vendored
@@ -2,6 +2,10 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
workflow_dispatch:
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}
|
||||||
|
cancel-in-progress: true
|
||||||
name: release-please
|
name: release-please
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
@@ -21,9 +25,13 @@ jobs:
|
|||||||
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git"
|
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git"
|
||||||
git tag -d v${{ steps.release.outputs.major }} || true
|
git tag -d v${{ steps.release.outputs.major }} || true
|
||||||
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
|
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
|
||||||
|
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }} || true
|
||||||
git push origin :v${{ steps.release.outputs.major }} || true
|
git push origin :v${{ steps.release.outputs.major }} || true
|
||||||
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
|
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
|
||||||
|
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }} || true
|
||||||
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}"
|
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}"
|
||||||
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}"
|
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}"
|
||||||
|
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}"
|
||||||
git push origin v${{ steps.release.outputs.major }}
|
git push origin v${{ steps.release.outputs.major }}
|
||||||
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
|
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
|
||||||
|
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}
|
||||||
|
|||||||
6
.github/workflows/semantic-pr-subject.yml
vendored
6
.github/workflows/semantic-pr-subject.yml
vendored
@@ -6,10 +6,14 @@ on:
|
|||||||
- reopened
|
- reopened
|
||||||
- edited
|
- edited
|
||||||
- synchronize
|
- synchronize
|
||||||
|
workflow_dispatch:
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.head_ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
jobs:
|
jobs:
|
||||||
semantic-pr-subject:
|
semantic-pr-subject:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: amannn/action-semantic-pull-request@v5.4.0
|
- uses: amannn/action-semantic-pull-request@v5.5.2
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
/luals-out/
|
||||||
|
/luals/
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
#!/usr/bin/env bash
|
#!/bin/sh
|
||||||
|
|
||||||
stylua . --check || exit 1
|
make
|
||||||
luacheck . || exit 1
|
|
||||||
|
|||||||
22
.luarc.json
22
.luarc.json
@@ -1,10 +1,15 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
|
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
|
||||||
"runtime.version" : "Lua 5.1",
|
"runtime.version": "Lua 5.1",
|
||||||
|
"workspace": {
|
||||||
|
"library": [
|
||||||
|
"$VIMRUNTIME/lua/vim",
|
||||||
|
"${3rd}/luv/library"
|
||||||
|
]
|
||||||
|
},
|
||||||
"diagnostics": {
|
"diagnostics": {
|
||||||
"globals": [
|
"libraryFiles": "Disable",
|
||||||
"vim"
|
"globals": [],
|
||||||
],
|
|
||||||
"neededFileStatus": {
|
"neededFileStatus": {
|
||||||
"ambiguity-1": "Any",
|
"ambiguity-1": "Any",
|
||||||
"assign-type-mismatch": "Any",
|
"assign-type-mismatch": "Any",
|
||||||
@@ -26,11 +31,19 @@
|
|||||||
"duplicate-index": "Any",
|
"duplicate-index": "Any",
|
||||||
"duplicate-set-field": "Any",
|
"duplicate-set-field": "Any",
|
||||||
"empty-block": "Any",
|
"empty-block": "Any",
|
||||||
|
"global-element": "Any",
|
||||||
"global-in-nil-env": "Any",
|
"global-in-nil-env": "Any",
|
||||||
|
"incomplete-signature-doc": "None",
|
||||||
|
"inject-field": "Any",
|
||||||
|
"invisible": "Any",
|
||||||
"lowercase-global": "Any",
|
"lowercase-global": "Any",
|
||||||
|
"missing-fields": "Any",
|
||||||
|
"missing-global-doc": "Any",
|
||||||
|
"missing-local-export-doc": "None",
|
||||||
"missing-parameter": "Any",
|
"missing-parameter": "Any",
|
||||||
"missing-return": "Any",
|
"missing-return": "Any",
|
||||||
"missing-return-value": "Any",
|
"missing-return-value": "Any",
|
||||||
|
"name-style-check": "None",
|
||||||
"need-check-nil": "Any",
|
"need-check-nil": "Any",
|
||||||
"newfield-call": "Any",
|
"newfield-call": "Any",
|
||||||
"newline-call": "Any",
|
"newline-call": "Any",
|
||||||
@@ -63,4 +76,3 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
".": "0.99.0"
|
".": "1.4.0"
|
||||||
}
|
}
|
||||||
|
|||||||
120
CHANGELOG.md
120
CHANGELOG.md
@@ -1,5 +1,125 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.4.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.3.3...nvim-tree-v1.4.0) (2024-06-09)
|
||||||
|
|
||||||
|
### Notice
|
||||||
|
|
||||||
|
* Neovim 0.9 is now the minimum supported version; please upgrade to neovim release version 0.9 or 0.10.
|
||||||
|
|
||||||
|
### Reverts
|
||||||
|
|
||||||
|
* **#2781:** "refactor: replace deprecated use of vim.diagnostic.is_disabled()" ([#2784](https://github.com/nvim-tree/nvim-tree.lua/issues/2784)) ([517e4fb](https://github.com/nvim-tree/nvim-tree.lua/commit/517e4fbb9ef3c0986da7047f44b4b91a2400f93c))
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* release 1.4.0 ([1cac800](https://github.com/nvim-tree/nvim-tree.lua/commit/1cac8005df6da484c97499247754afa59fef92db))
|
||||||
|
|
||||||
|
## [1.3.3](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.3.2...nvim-tree-v1.3.3) (2024-05-14)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* nil access exception with git integration when changing branches ([#2774](https://github.com/nvim-tree/nvim-tree.lua/issues/2774)) ([340d3a9](https://github.com/nvim-tree/nvim-tree.lua/commit/340d3a9795e06bdd1814228de398cd510f9bfbb0))
|
||||||
|
|
||||||
|
## [1.3.2](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.3.1...nvim-tree-v1.3.2) (2024-05-12)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2758:** use nvim-webdevicons default file icon, not renderer.icons.glyphs.default, as per :help ([#2759](https://github.com/nvim-tree/nvim-tree.lua/issues/2759)) ([347e1eb](https://github.com/nvim-tree/nvim-tree.lua/commit/347e1eb35264677f66a79466bb5e3d111968e12c))
|
||||||
|
* **#2758:** use nvim-webdevicons default for default files ([347e1eb](https://github.com/nvim-tree/nvim-tree.lua/commit/347e1eb35264677f66a79466bb5e3d111968e12c))
|
||||||
|
* **#925:** handle newlines in file names ([#2754](https://github.com/nvim-tree/nvim-tree.lua/issues/2754)) ([64f61e4](https://github.com/nvim-tree/nvim-tree.lua/commit/64f61e4c913047a045ff90bd188dd3b54ee443cf))
|
||||||
|
|
||||||
|
## [1.3.1](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.3.0...nvim-tree-v1.3.1) (2024-04-25)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2535:** TextYankPost event sends vim.v.event ([#2734](https://github.com/nvim-tree/nvim-tree.lua/issues/2734)) ([d8d3a15](https://github.com/nvim-tree/nvim-tree.lua/commit/d8d3a1590a05b2d8b5eb26e2ed1c6052b1b47a77))
|
||||||
|
* **#2733:** escape trash path ([#2735](https://github.com/nvim-tree/nvim-tree.lua/issues/2735)) ([81eb8d5](https://github.com/nvim-tree/nvim-tree.lua/commit/81eb8d519233c105f30dc0a278607e62b20502fd))
|
||||||
|
|
||||||
|
## [1.3.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.2.0...nvim-tree-v1.3.0) (2024-03-30)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* add update_focused_file.exclude ([#2673](https://github.com/nvim-tree/nvim-tree.lua/issues/2673)) ([e20966a](https://github.com/nvim-tree/nvim-tree.lua/commit/e20966ae558524f8d6f93dc37f5d2a8605f893e2))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2658:** change SpellCap groups to reduce confusion: ExecFile->Question, ImageFile->Question, SpecialFile->Title, Symlink->Underlined; add all other highlight groups to :NvimTreeHiTest ([#2732](https://github.com/nvim-tree/nvim-tree.lua/issues/2732)) ([0aca092](https://github.com/nvim-tree/nvim-tree.lua/commit/0aca0920f44b12a8383134bcb52da9faec123608))
|
||||||
|
* bookmark filter shows marked directory children ([#2719](https://github.com/nvim-tree/nvim-tree.lua/issues/2719)) ([2d97059](https://github.com/nvim-tree/nvim-tree.lua/commit/2d97059661c83787372c8c003e743c984ba3ac50))
|
||||||
|
|
||||||
|
## [1.2.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.1.1...nvim-tree-v1.2.0) (2024-03-24)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* add api.tree.toggle_enable_filters ([#2706](https://github.com/nvim-tree/nvim-tree.lua/issues/2706)) ([f7c09bd](https://github.com/nvim-tree/nvim-tree.lua/commit/f7c09bd72e50e1795bd3afb9e2a2b157b4bfb3c3))
|
||||||
|
|
||||||
|
## [1.1.1](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.1.0...nvim-tree-v1.1.1) (2024-03-15)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2395:** marks.bulk.move defaults to directory at cursor ([#2688](https://github.com/nvim-tree/nvim-tree.lua/issues/2688)) ([cfea5bd](https://github.com/nvim-tree/nvim-tree.lua/commit/cfea5bd0806aab41bef6014c6cf5a510910ddbdb))
|
||||||
|
* **#2705:** change NvimTreeWindowPicker cterm background from Cyan to more visible DarkBlue ([#2708](https://github.com/nvim-tree/nvim-tree.lua/issues/2708)) ([1fd9c98](https://github.com/nvim-tree/nvim-tree.lua/commit/1fd9c98960463d2d5d400916c0633b2df016941d))
|
||||||
|
* bookmark filter should include parent directory ([#2704](https://github.com/nvim-tree/nvim-tree.lua/issues/2704)) ([76b9810](https://github.com/nvim-tree/nvim-tree.lua/commit/76b98109f62caa12b2f1dff472060b2233ea2e90))
|
||||||
|
|
||||||
|
## [1.1.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.0.0...nvim-tree-v1.1.0) (2024-03-14)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **#2630:** file renames can now create directories ([#2657](https://github.com/nvim-tree/nvim-tree.lua/issues/2657)) ([efafd73](https://github.com/nvim-tree/nvim-tree.lua/commit/efafd73efa9bc8c26282aed563ba0f01c7465b06))
|
||||||
|
* add api.fs.copy.basename, default mapping ge ([#2698](https://github.com/nvim-tree/nvim-tree.lua/issues/2698)) ([8f2a50f](https://github.com/nvim-tree/nvim-tree.lua/commit/8f2a50f1cd0c64003042364cf317c8788eaa6c8c))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2695:** git toplevel guard against missing paths ([#2696](https://github.com/nvim-tree/nvim-tree.lua/issues/2696)) ([3c4267e](https://github.com/nvim-tree/nvim-tree.lua/commit/3c4267eb5045fa86b67fe40c0c63d31efc801e77))
|
||||||
|
* searchcount exception on invalid search regex ([#2693](https://github.com/nvim-tree/nvim-tree.lua/issues/2693)) ([041dbd1](https://github.com/nvim-tree/nvim-tree.lua/commit/041dbd18f440207ad161503a384e7c82d575db66))
|
||||||
|
|
||||||
|
## [1.0.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v0.100.0...nvim-tree-v1.0.0) (2024-02-18)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **#2654:** filters.custom may be a function ([#2655](https://github.com/nvim-tree/nvim-tree.lua/issues/2655)) ([4a87b8b](https://github.com/nvim-tree/nvim-tree.lua/commit/4a87b8b46b4a30107971871df3cb7f4c30fdd5d0))
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* release 1.0.0 ([#2678](https://github.com/nvim-tree/nvim-tree.lua/issues/2678)) ([d16246a](https://github.com/nvim-tree/nvim-tree.lua/commit/d16246a7575538f77e9246520449b99333c469f7))
|
||||||
|
|
||||||
|
## [0.100.0](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v0.99.0...nvim-tree-v0.100.0) (2024-02-11)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **#1389:** api: recursive node navigation for git and diagnostics ([#2525](https://github.com/nvim-tree/nvim-tree.lua/issues/2525)) ([5d13cc8](https://github.com/nvim-tree/nvim-tree.lua/commit/5d13cc8205bce4963866f73c50f6fdc18a515ffe))
|
||||||
|
* **#2415:** add :NvimTreeHiTest ([#2664](https://github.com/nvim-tree/nvim-tree.lua/issues/2664)) ([b278fc2](https://github.com/nvim-tree/nvim-tree.lua/commit/b278fc25ae0fc95e4808eb5618f07fc2522fd2b3))
|
||||||
|
* **#2415:** colour and highlight overhaul, see :help nvim-tree-highlight-overhaul ([#2455](https://github.com/nvim-tree/nvim-tree.lua/issues/2455)) ([e9c5abe](https://github.com/nvim-tree/nvim-tree.lua/commit/e9c5abe073a973f54d3ca10bfe30f253569f4405))
|
||||||
|
* add node.open.toggle_group_empty, default mapping L ([#2647](https://github.com/nvim-tree/nvim-tree.lua/issues/2647)) ([8cbb1db](https://github.com/nvim-tree/nvim-tree.lua/commit/8cbb1db8e90b62fc56f379992e622e9f919792ce))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **#2415:** disambiguate highlight groups, see :help nvim-tree-highlight-overhaul ([#2639](https://github.com/nvim-tree/nvim-tree.lua/issues/2639)) ([d9cb432](https://github.com/nvim-tree/nvim-tree.lua/commit/d9cb432d2c8d8fa9267ddbd7535d76fe4df89360))
|
||||||
|
* **#2415:** fix NvimTreeIndentMarker highlight group: FileIcon->FolderIcon ([e9ac136](https://github.com/nvim-tree/nvim-tree.lua/commit/e9ac136a3ab996aa8e4253253521dcf2cb66b81b))
|
||||||
|
* **#2415:** highlight help header and mappings ([#2669](https://github.com/nvim-tree/nvim-tree.lua/issues/2669)) ([39e6fef](https://github.com/nvim-tree/nvim-tree.lua/commit/39e6fef85ac3bb29532b877aa7c9c34911c661af))
|
||||||
|
* **#2415:** nvim 0.8 highlight overhaul support, limited to only show highest highlight precedence ([#2642](https://github.com/nvim-tree/nvim-tree.lua/issues/2642)) ([f39f7b6](https://github.com/nvim-tree/nvim-tree.lua/commit/f39f7b6fcd3865ac2146de4cb4045286308f2935))
|
||||||
|
* **#2415:** NvimTreeIndentMarker highlight group: FileIcon->FolderIcon ([#2656](https://github.com/nvim-tree/nvim-tree.lua/issues/2656)) ([e9ac136](https://github.com/nvim-tree/nvim-tree.lua/commit/e9ac136a3ab996aa8e4253253521dcf2cb66b81b))
|
||||||
|
* **#2624:** open file from docked floating window ([#2627](https://github.com/nvim-tree/nvim-tree.lua/issues/2627)) ([f24afa2](https://github.com/nvim-tree/nvim-tree.lua/commit/f24afa2cef551122b8bd53bb2e4a7df42343ce2e))
|
||||||
|
* **#2632:** occasional error stack when locating nvim-tree window ([#2633](https://github.com/nvim-tree/nvim-tree.lua/issues/2633)) ([48b1d86](https://github.com/nvim-tree/nvim-tree.lua/commit/48b1d8638fa3726236ae22e0e48a74ac8ea6592a))
|
||||||
|
* **#2637:** show buffer modified icons and highlights ([#2638](https://github.com/nvim-tree/nvim-tree.lua/issues/2638)) ([7bdb220](https://github.com/nvim-tree/nvim-tree.lua/commit/7bdb220d0fe604a77361e92cdbc7af1b8a412126))
|
||||||
|
* **#2643:** correctly apply linked highlight groups in tree window ([#2653](https://github.com/nvim-tree/nvim-tree.lua/issues/2653)) ([fbee8a6](https://github.com/nvim-tree/nvim-tree.lua/commit/fbee8a69a46f558d29ab84e96301425b0501c668))
|
||||||
|
* allow highlight overrides for DEFAULT_DEFS: NvimTreeFolderIcon, NvimTreeWindowPicker ([#2636](https://github.com/nvim-tree/nvim-tree.lua/issues/2636)) ([74525ac](https://github.com/nvim-tree/nvim-tree.lua/commit/74525ac04760bf0d9fec2bf51474d2b05f36048e))
|
||||||
|
* bad column offset when using full_name ([#2629](https://github.com/nvim-tree/nvim-tree.lua/issues/2629)) ([75ff64e](https://github.com/nvim-tree/nvim-tree.lua/commit/75ff64e6663fc3b23c72dca32b2f838acefe7c8a))
|
||||||
|
* passing nil as window handle in view.get_winnr ([48b1d86](https://github.com/nvim-tree/nvim-tree.lua/commit/48b1d8638fa3726236ae22e0e48a74ac8ea6592a))
|
||||||
|
|
||||||
## 0.99.0 (2024-01-01)
|
## 0.99.0 (2024-01-01)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
110
CONTRIBUTING.md
110
CONTRIBUTING.md
@@ -4,35 +4,117 @@ Thank you for contributing.
|
|||||||
|
|
||||||
See [Development](https://github.com/nvim-tree/nvim-tree.lua/wiki/Development) for environment setup, tips and tools.
|
See [Development](https://github.com/nvim-tree/nvim-tree.lua/wiki/Development) for environment setup, tips and tools.
|
||||||
|
|
||||||
## Styling and formatting
|
# Tools
|
||||||
|
|
||||||
Code is formatted using luacheck, and linted using stylua.
|
Following are used during CI and strongly recommended during local development.
|
||||||
You can install these with:
|
|
||||||
|
|
||||||
```bash
|
Lint: [luacheck](https://github.com/lunarmodules/luacheck/)
|
||||||
luarocks install luacheck
|
|
||||||
cargo install stylua
|
Style: [StyLua](https://github.com/JohnnyMorganz/StyLua)
|
||||||
|
|
||||||
|
Language server: [luals](https://luals.github.io)
|
||||||
|
|
||||||
|
You can install them via you OS package manager e.g. `pacman`, `brew` or other via other package managers such as `cargo` or `luarocks`
|
||||||
|
|
||||||
|
# Quality
|
||||||
|
|
||||||
|
The following quality checks are mandatory and are performed during CI. They run on the entire `lua` directory and return 1 on any failure.
|
||||||
|
|
||||||
|
You can run them all via `make` or `make all`
|
||||||
|
|
||||||
|
You can setup git hooks to run all checks by running `scripts/setup-hooks.sh`
|
||||||
|
|
||||||
|
## lint
|
||||||
|
|
||||||
|
1. Runs luacheck quietly using `.luacheck` settings
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make lint
|
||||||
```
|
```
|
||||||
|
|
||||||
You can setup the git hooks by running `scripts/setup-hooks.sh`.
|
## style
|
||||||
|
|
||||||
## Adding new actions
|
1. Runs stylua using `.stylua.toml` settings
|
||||||
|
1. Runs `scripts/doc-comments.sh` to validate annotated documentation
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make style
|
||||||
|
```
|
||||||
|
|
||||||
|
You can automatically fix stylua issues via:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make style-fix
|
||||||
|
```
|
||||||
|
|
||||||
|
## check
|
||||||
|
|
||||||
|
1. Runs the checks that the LSP lua language server runs inside nvim using `.luarc.json` via `scripts/luals-check.sh`
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make check
|
||||||
|
```
|
||||||
|
|
||||||
|
Assumes `$VIMRUNTIME` is `/usr/share/nvim/runtime`. Adjust as necessary e.g.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
VIMRUNTIME="/my/path/to/runtime" make check
|
||||||
|
```
|
||||||
|
|
||||||
|
If `lua-language-server` is not available or `--check` doesn't function (e.g. Arch Linux 3.9.1-1) you can manually install it as per `ci.yml` e.g.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
mkdir luals
|
||||||
|
curl -L "https://github.com/LuaLS/lua-language-server/releases/download/3.9.1/lua-language-server-3.9.1-linux-x64.tar.gz" | tar zx --directory luals
|
||||||
|
|
||||||
|
PATH="luals/bin:${PATH}" make check
|
||||||
|
```
|
||||||
|
|
||||||
|
# Adding New Actions
|
||||||
|
|
||||||
To add a new action, add a file in `actions/name-of-the-action.lua`. You should export a `setup` function if some configuration is needed.
|
To add a new action, add a file in `actions/name-of-the-action.lua`. You should export a `setup` function if some configuration is needed.
|
||||||
Once you did, you should run the `scripts/update-help.sh`.
|
|
||||||
|
|
||||||
## Documentation
|
Once you did, you should run `make help-update`
|
||||||
|
|
||||||
|
# Documentation
|
||||||
|
|
||||||
|
## Opts
|
||||||
|
|
||||||
When adding new options, you should declare the defaults in the main `nvim-tree.lua` file.
|
When adding new options, you should declare the defaults in the main `nvim-tree.lua` file.
|
||||||
Once you did, you should run the `scripts/update-help.sh`.
|
|
||||||
|
|
||||||
Documentation for options should also be added to `nvim-tree-opts` in `doc/nvim-tree-lua.txt`
|
Documentation for options should also be added to `nvim-tree-opts` in `doc/nvim-tree-lua.txt`
|
||||||
|
|
||||||
## Pull Request
|
## API
|
||||||
|
|
||||||
Please reference any issues in the description e.g. "resolves #1234".
|
When adding or changing API please update :help nvim-tree-api
|
||||||
|
|
||||||
|
# Pull Request
|
||||||
|
|
||||||
|
Please reference any issues in the description e.g. "resolves #1234", which will be closed upon merge.
|
||||||
|
|
||||||
Please check "allow edits by maintainers" to allow nvim-tree developers to make small changes such as documentation tweaks.
|
Please check "allow edits by maintainers" to allow nvim-tree developers to make small changes such as documentation tweaks.
|
||||||
|
|
||||||
A test case to reproduce the issue is required. A ["Clean Room" Replication](https://github.com/nvim-tree/nvim-tree.lua/wiki/Troubleshooting#clean-room-replication) is preferred.
|
## Subject
|
||||||
|
|
||||||
|
The merge commit message will be the subject of the PR.
|
||||||
|
|
||||||
|
A [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0) subject will be validated by the Semantic Pull Request Subject CI job. Reference the issue to be used in the release notes e.g.
|
||||||
|
|
||||||
|
`fix(#2395): marks.bulk.move defaults to directory at cursor`
|
||||||
|
|
||||||
|
Available types:
|
||||||
|
* feat: A new feature
|
||||||
|
* fix: A bug fix
|
||||||
|
* docs: Documentation only changes
|
||||||
|
* style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
|
||||||
|
* refactor: A code change that neither fixes a bug nor adds a feature
|
||||||
|
* perf: A code change that improves performance
|
||||||
|
* test: Adding missing tests or correcting existing tests
|
||||||
|
* build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
|
||||||
|
* ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
|
||||||
|
* chore: Other changes that don't modify src or test files
|
||||||
|
* revert: Reverts a previous commit
|
||||||
|
|
||||||
|
If in doubt, look at previous commits.
|
||||||
|
|
||||||
|
See also [The Conventional Commits ultimate cheatsheet](https://gist.github.com/gabrielecanepa/fa6cca1a8ae96f77896fe70ddee65527)
|
||||||
|
|||||||
47
Makefile
Normal file
47
Makefile
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
all: lint style check
|
||||||
|
|
||||||
|
#
|
||||||
|
# mandatory checks
|
||||||
|
#
|
||||||
|
lint: luacheck
|
||||||
|
|
||||||
|
style: stylua style-doc
|
||||||
|
|
||||||
|
check: luals
|
||||||
|
|
||||||
|
#
|
||||||
|
# subtasks
|
||||||
|
#
|
||||||
|
luacheck:
|
||||||
|
luacheck -q lua
|
||||||
|
|
||||||
|
stylua:
|
||||||
|
stylua lua --check
|
||||||
|
|
||||||
|
style-doc:
|
||||||
|
scripts/doc-comments.sh
|
||||||
|
|
||||||
|
luals:
|
||||||
|
@scripts/luals-check.sh
|
||||||
|
|
||||||
|
#
|
||||||
|
# fixes
|
||||||
|
#
|
||||||
|
style-fix:
|
||||||
|
stylua lua
|
||||||
|
|
||||||
|
#
|
||||||
|
# utility
|
||||||
|
#
|
||||||
|
help-update:
|
||||||
|
scripts/help-update.sh
|
||||||
|
|
||||||
|
#
|
||||||
|
# CI
|
||||||
|
#
|
||||||
|
help-check: help-update
|
||||||
|
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
|
||||||
|
|
||||||
25
README.md
25
README.md
@@ -24,11 +24,11 @@
|
|||||||
|
|
||||||
Take a look at the [wiki](https://github.com/nvim-tree/nvim-tree.lua/wiki) for Showcases, Tips, Recipes and more.
|
Take a look at the [wiki](https://github.com/nvim-tree/nvim-tree.lua/wiki) for Showcases, Tips, Recipes and more.
|
||||||
|
|
||||||
Community support: [matrix](https://matrix.to/#/#nvim-tree:matrix.org)
|
Questions and general support: [Discussions](https://github.com/nvim-tree/nvim-tree.lua/discussions)
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
[neovim >=0.8.0](https://github.com/neovim/neovim/wiki/Installing-Neovim)
|
[neovim >=0.9.0](https://github.com/neovim/neovim/wiki/Installing-Neovim)
|
||||||
|
|
||||||
[nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons) is optional and used to display file icons. It requires a [patched font](https://www.nerdfonts.com/). Your terminal emulator must be configured to use that font, usually "Hack Nerd Font"
|
[nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons) is optional and used to display file icons. It requires a [patched font](https://www.nerdfonts.com/). Your terminal emulator must be configured to use that font, usually "Hack Nerd Font"
|
||||||
|
|
||||||
@@ -38,6 +38,8 @@ Please install via your preferred package manager. See [Installation](https://gi
|
|||||||
|
|
||||||
`nvim-tree/nvim-tree.lua`
|
`nvim-tree/nvim-tree.lua`
|
||||||
|
|
||||||
|
Major or minor versions may be specified via tags: `v<MAJOR>` e.g. `v1` or `v<MAJOR>.<MINOR>` e.g. `v1.23`
|
||||||
|
|
||||||
`nvim-tree/nvim-web-devicons` optional, for file icons
|
`nvim-tree/nvim-web-devicons` optional, for file icons
|
||||||
|
|
||||||
Disabling [netrw](https://neovim.io/doc/user/pi_netrw.html) is strongly advised, see [:help nvim-tree-netrw](doc/nvim-tree-lua.txt)
|
Disabling [netrw](https://neovim.io/doc/user/pi_netrw.html) is strongly advised, see [:help nvim-tree-netrw](doc/nvim-tree-lua.txt)
|
||||||
@@ -53,7 +55,7 @@ Setup the plugin in your `init.lua`
|
|||||||
vim.g.loaded_netrw = 1
|
vim.g.loaded_netrw = 1
|
||||||
vim.g.loaded_netrwPlugin = 1
|
vim.g.loaded_netrwPlugin = 1
|
||||||
|
|
||||||
-- set termguicolors to enable highlight groups
|
-- optionally enable 24-bit colour
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
-- empty setup using defaults
|
-- empty setup using defaults
|
||||||
@@ -110,6 +112,23 @@ require("nvim-tree").setup {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Highlight
|
||||||
|
|
||||||
|
Run `:NvimTreeHiTest` to show all the highlights that nvim-tree uses.
|
||||||
|
|
||||||
|
They can be customised before or after setup is called and will be immediately
|
||||||
|
applied at runtime. e.g.
|
||||||
|
|
||||||
|
```lua
|
||||||
|
vim.cmd([[
|
||||||
|
:hi NvimTreeExecFile guifg=#ffa0a0
|
||||||
|
:hi NvimTreeSpecialFile guifg=#ff80ff gui=underline
|
||||||
|
:hi NvimTreeSymlink guifg=Yellow gui=italic
|
||||||
|
:hi link NvimTreeImageFile Title
|
||||||
|
]])
|
||||||
|
```
|
||||||
|
See [:help nvim-tree-highlight](doc/nvim-tree-lua.txt) for details.
|
||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
||||||
See [:help nvim-tree-commands](doc/nvim-tree-lua.txt)
|
See [:help nvim-tree-commands](doc/nvim-tree-lua.txt)
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ CONTENTS *nvim-tree*
|
|||||||
2.1 Quickstart: Setup |nvim-tree-quickstart-setup|
|
2.1 Quickstart: Setup |nvim-tree-quickstart-setup|
|
||||||
2.2 Quickstart: Help |nvim-tree-quickstart-help|
|
2.2 Quickstart: Help |nvim-tree-quickstart-help|
|
||||||
2.3 Quickstart: Custom Mappings |nvim-tree-quickstart-custom-mappings|
|
2.3 Quickstart: Custom Mappings |nvim-tree-quickstart-custom-mappings|
|
||||||
|
2.4 Quickstart: Highlight |nvim-tree-quickstart-highlight|
|
||||||
3. Commands |nvim-tree-commands|
|
3. Commands |nvim-tree-commands|
|
||||||
4. Setup |nvim-tree-setup|
|
4. Setup |nvim-tree-setup|
|
||||||
5. Opts |nvim-tree-opts|
|
5. Opts |nvim-tree-opts|
|
||||||
@@ -43,13 +44,22 @@ CONTENTS *nvim-tree*
|
|||||||
6.7 API Marks |nvim-tree-api.marks|
|
6.7 API Marks |nvim-tree-api.marks|
|
||||||
6.8 API Config |nvim-tree-api.config|
|
6.8 API Config |nvim-tree-api.config|
|
||||||
6.9 API Commands |nvim-tree-api.commands|
|
6.9 API Commands |nvim-tree-api.commands|
|
||||||
|
6.10 API Diagnostics |nvim-tree-api.diagnostics|
|
||||||
7. Mappings |nvim-tree-mappings|
|
7. Mappings |nvim-tree-mappings|
|
||||||
7.1 Mappings: Default |nvim-tree-mappings-default|
|
7.1 Mappings: Default |nvim-tree-mappings-default|
|
||||||
8. Highlight |nvim-tree-highlight|
|
8. Highlight |nvim-tree-highlight|
|
||||||
|
8.1 Highlight: Default |nvim-tree-highlight-default|
|
||||||
|
8.2 Highlight: Overhaul |nvim-tree-highlight-overhaul|
|
||||||
9. Events |nvim-tree-events|
|
9. Events |nvim-tree-events|
|
||||||
10. Prompts |nvim-tree-prompts|
|
10. Prompts |nvim-tree-prompts|
|
||||||
11. OS Specific Restrictions |nvim-tree-os-specific|
|
11. OS Specific Restrictions |nvim-tree-os-specific|
|
||||||
12. Netrw |nvim-tree-netrw|
|
12. Netrw |nvim-tree-netrw|
|
||||||
|
13. Legacy |nvim-tree-legacy|
|
||||||
|
13.1 Legacy: Opts |nvim-tree-legacy-opts|
|
||||||
|
13.2 Legacy: Highlight |nvim-tree-legacy-highlight|
|
||||||
|
14. Index |nvim-tree-index|
|
||||||
|
14.1 Index: Opts |nvim-tree-index-opts|
|
||||||
|
14.2 Index: API |nvim-tree-index-api|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
1. INTRODUCTION *nvim-tree-introduction*
|
1. INTRODUCTION *nvim-tree-introduction*
|
||||||
@@ -93,7 +103,7 @@ Git Integration
|
|||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
|
|
||||||
This file explorer requires `neovim >= 0.8.0`
|
This file explorer requires `neovim >= 0.9.0`
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
2. QUICKSTART *nvim-tree-quickstart*
|
2. QUICKSTART *nvim-tree-quickstart*
|
||||||
@@ -113,7 +123,7 @@ Setup the plugin in your `init.lua` >
|
|||||||
vim.g.loaded_netrw = 1
|
vim.g.loaded_netrw = 1
|
||||||
vim.g.loaded_netrwPlugin = 1
|
vim.g.loaded_netrwPlugin = 1
|
||||||
|
|
||||||
-- set termguicolors to enable highlight groups
|
-- optionally enable 24-bit colour
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
-- empty setup using defaults
|
-- empty setup using defaults
|
||||||
@@ -175,10 +185,12 @@ Show the mappings: `g?`
|
|||||||
`f` Live Filter: Start |nvim-tree-api.live_filter.start()|
|
`f` Live Filter: Start |nvim-tree-api.live_filter.start()|
|
||||||
`g?` Help |nvim-tree-api.tree.toggle_help()|
|
`g?` Help |nvim-tree-api.tree.toggle_help()|
|
||||||
`gy` Copy Absolute Path |nvim-tree-api.fs.copy.absolute_path()|
|
`gy` Copy Absolute Path |nvim-tree-api.fs.copy.absolute_path()|
|
||||||
|
`ge` Copy Basename |nvim-tree-api.fs.copy.basename()|
|
||||||
`H` Toggle Filter: Dotfiles |nvim-tree-api.tree.toggle_hidden_filter()|
|
`H` Toggle Filter: Dotfiles |nvim-tree-api.tree.toggle_hidden_filter()|
|
||||||
`I` Toggle Filter: Git Ignore |nvim-tree-api.tree.toggle_gitignore_filter()|
|
`I` Toggle Filter: Git Ignore |nvim-tree-api.tree.toggle_gitignore_filter()|
|
||||||
`J` Last Sibling |nvim-tree-api.node.navigate.sibling.last()|
|
`J` Last Sibling |nvim-tree-api.node.navigate.sibling.last()|
|
||||||
`K` First Sibling |nvim-tree-api.node.navigate.sibling.first()|
|
`K` First Sibling |nvim-tree-api.node.navigate.sibling.first()|
|
||||||
|
`L` Toggle Group Empty |nvim-tree-api.node.open.toggle_group_empty()|
|
||||||
`M` Toggle Filter: No Bookmark |nvim-tree-api.tree.toggle_no_bookmark_filter()|
|
`M` Toggle Filter: No Bookmark |nvim-tree-api.tree.toggle_no_bookmark_filter()|
|
||||||
`m` Toggle Bookmark |nvim-tree-api.marks.toggle()|
|
`m` Toggle Bookmark |nvim-tree-api.marks.toggle()|
|
||||||
`o` Open |nvim-tree-api.node.open.edit()|
|
`o` Open |nvim-tree-api.node.open.edit()|
|
||||||
@@ -227,6 +239,23 @@ via |nvim-tree.on_attach| e.g. >
|
|||||||
---
|
---
|
||||||
}
|
}
|
||||||
<
|
<
|
||||||
|
==============================================================================
|
||||||
|
2.4 QUICKSTART: HIGHLIGHT *nvim-tree-quickstart-highlight*
|
||||||
|
|
||||||
|
Run |:NvimTreeHiTest| to show all the highlights that nvim-tree uses.
|
||||||
|
|
||||||
|
They can be customised before or after setup is called and will be immediately
|
||||||
|
applied at runtime. e.g. >
|
||||||
|
|
||||||
|
vim.cmd([[
|
||||||
|
:hi NvimTreeExecFile guifg=#ffa0a0
|
||||||
|
:hi NvimTreeSpecialFile guifg=#ff80ff gui=underline
|
||||||
|
:hi NvimTreeSymlink guifg=Yellow gui=italic
|
||||||
|
:hi link NvimTreeImageFile Title
|
||||||
|
]])
|
||||||
|
<
|
||||||
|
See |nvim-tree-highlight| for details.
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
3. COMMANDS *nvim-tree-commands*
|
3. COMMANDS *nvim-tree-commands*
|
||||||
|
|
||||||
@@ -321,6 +350,14 @@ via |nvim-tree.on_attach| e.g. >
|
|||||||
|
|
||||||
Calls: `api.tree.collapse_all(true)`
|
Calls: `api.tree.collapse_all(true)`
|
||||||
|
|
||||||
|
*:NvimTreeHiTest*
|
||||||
|
|
||||||
|
Show nvim-tree highlight groups similar to `:so $VIMRUNTIME/syntax/hitest.vim`
|
||||||
|
|
||||||
|
See |nvim-tree-api.diagnostics.hi_test()|
|
||||||
|
|
||||||
|
Calls: `api.diagnostics.hi_test()`
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
4. SETUP *nvim-tree-setup*
|
4. SETUP *nvim-tree-setup*
|
||||||
|
|
||||||
@@ -387,8 +424,8 @@ Following is the default configuration. See |nvim-tree-opts| for details.
|
|||||||
indent_width = 2,
|
indent_width = 2,
|
||||||
special_files = { "Cargo.toml", "Makefile", "README.md", "readme.md" },
|
special_files = { "Cargo.toml", "Makefile", "README.md", "readme.md" },
|
||||||
symlink_destination = true,
|
symlink_destination = true,
|
||||||
highlight_git = false,
|
highlight_git = "none",
|
||||||
highlight_diagnostics = false,
|
highlight_diagnostics = "none",
|
||||||
highlight_opened_files = "none",
|
highlight_opened_files = "none",
|
||||||
highlight_modified = "none",
|
highlight_modified = "none",
|
||||||
highlight_bookmarks = "none",
|
highlight_bookmarks = "none",
|
||||||
@@ -463,9 +500,12 @@ Following is the default configuration. See |nvim-tree-opts| for details.
|
|||||||
},
|
},
|
||||||
update_focused_file = {
|
update_focused_file = {
|
||||||
enable = false,
|
enable = false,
|
||||||
update_root = false,
|
update_root = {
|
||||||
|
enable = false,
|
||||||
ignore_list = {},
|
ignore_list = {},
|
||||||
},
|
},
|
||||||
|
exclude = false,
|
||||||
|
},
|
||||||
system_open = {
|
system_open = {
|
||||||
cmd = "",
|
cmd = "",
|
||||||
args = {},
|
args = {},
|
||||||
@@ -500,6 +540,7 @@ Following is the default configuration. See |nvim-tree-opts| for details.
|
|||||||
show_on_open_dirs = true,
|
show_on_open_dirs = true,
|
||||||
},
|
},
|
||||||
filters = {
|
filters = {
|
||||||
|
enable = true,
|
||||||
git_ignored = true,
|
git_ignored = true,
|
||||||
dotfiles = false,
|
dotfiles = false,
|
||||||
git_clean = false,
|
git_clean = false,
|
||||||
@@ -642,7 +683,7 @@ Prefer startup root directory when updating root directory of the tree.
|
|||||||
Only relevant when `update_focused_file.update_root` is `true`
|
Only relevant when `update_focused_file.update_root` is `true`
|
||||||
Type: `boolean`, Default: `false`
|
Type: `boolean`, Default: `false`
|
||||||
|
|
||||||
*nvim-tree.sync_root_with_cwd* (previously `update_cwd`)
|
*nvim-tree.sync_root_with_cwd*
|
||||||
Changes the tree root directory on `DirChanged` and refreshes the tree.
|
Changes the tree root directory on `DirChanged` and refreshes the tree.
|
||||||
Type: `boolean`, Default: `false`
|
Type: `boolean`, Default: `false`
|
||||||
|
|
||||||
@@ -664,7 +705,7 @@ Type: `boolean`, Default: `false`
|
|||||||
|
|
||||||
File and folder sorting options.
|
File and folder sorting options.
|
||||||
|
|
||||||
*nvim-tree.sort.sorter* (previously `sort_by`)
|
*nvim-tree.sort.sorter*
|
||||||
Changes how files within the same directory are sorted.
|
Changes how files within the same directory are sorted.
|
||||||
Can be one of `"name"`, `"case_sensitive"`, `"modification_time"`, `"extension"`,
|
Can be one of `"name"`, `"case_sensitive"`, `"modification_time"`, `"extension"`,
|
||||||
`"suffix"`, `"filetype"` or a function.
|
`"suffix"`, `"filetype"` or a function.
|
||||||
@@ -743,7 +784,7 @@ Show |signcolumn|. Value can be `"yes"`, `"auto"`, `"no"`.
|
|||||||
Width of the window: can be a `%` string, a number representing columns, a
|
Width of the window: can be a `%` string, a number representing columns, a
|
||||||
function or a table.
|
function or a table.
|
||||||
A table indicates that the view should be dynamically sized based on the
|
A table indicates that the view should be dynamically sized based on the
|
||||||
longest line (previously `view.adaptive_size`).
|
longest line.
|
||||||
Type: `string | number | table | function()` returning a number
|
Type: `string | number | table | function()` returning a number
|
||||||
Default: `30`
|
Default: `30`
|
||||||
|
|
||||||
@@ -789,8 +830,8 @@ Use nvim-tree in a floating window.
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
5.3 OPTS: RENDERER *nvim-tree-opts-renderer*
|
5.3 OPTS: RENDERER *nvim-tree-opts-renderer*
|
||||||
|
|
||||||
Highlight precedence:
|
Highlight precedence, additive:
|
||||||
clipboard > diagnostics > bookmarked > modified > opened > git
|
git < opened < modified < bookmarked < diagnostics < copied < cut
|
||||||
|
|
||||||
*nvim-tree.renderer.add_trailing*
|
*nvim-tree.renderer.add_trailing*
|
||||||
Appends a trailing slash to folder names.
|
Appends a trailing slash to folder names.
|
||||||
@@ -832,18 +873,20 @@ Whether to show the destination of the symlink.
|
|||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
*nvim-tree.renderer.highlight_git*
|
*nvim-tree.renderer.highlight_git*
|
||||||
Enable highlight for git attributes using `NvimTreeGit*` highlight groups.
|
Enable highlight for git attributes using `NvimTreeGit*HL` highlight groups.
|
||||||
Requires |nvim-tree.git.enable|
|
Requires |nvim-tree.git.enable|
|
||||||
Type: `boolean`, Default: `false`
|
Value can be `"none"`, `"icon"`, `"name"` or `"all"`.
|
||||||
|
Type: `string`, Default: `"none"`
|
||||||
|
|
||||||
*nvim-tree.renderer.highlight_diagnostics*
|
*nvim-tree.renderer.highlight_diagnostics*
|
||||||
Enable highlight for diagnostics using `LspDiagnosticsError*Text` highlight groups.
|
Enable highlight for diagnostics using `NvimTreeDiagnostic*HL` highlight groups.
|
||||||
Requires |nvim-tree.diagnostics.enable|
|
Requires |nvim-tree.diagnostics.enable|
|
||||||
Type: `boolean`, Default: `false`
|
Value can be `"none"`, `"icon"`, `"name"` or `"all"`.
|
||||||
|
Type: `string`, Default: `"none"`
|
||||||
|
|
||||||
*nvim-tree.renderer.highlight_opened_files*
|
*nvim-tree.renderer.highlight_opened_files*
|
||||||
Highlight icons and/or names for |bufloaded()| files using the
|
Highlight icons and/or names for |bufloaded()| files using the
|
||||||
`NvimTreeOpenedFile` highlight group.
|
`NvimTreeOpenedHL` highlight group.
|
||||||
See |nvim-tree-api.navigate.opened.next()| and |nvim-tree-api.navigate.opened.prev()|
|
See |nvim-tree-api.navigate.opened.next()| and |nvim-tree-api.navigate.opened.prev()|
|
||||||
Value can be `"none"`, `"icon"`, `"name"` or `"all"`.
|
Value can be `"none"`, `"icon"`, `"name"` or `"all"`.
|
||||||
Type: `string`, Default: `"none"`
|
Type: `string`, Default: `"none"`
|
||||||
@@ -892,8 +935,8 @@ Configuration options for tree indent markers.
|
|||||||
*nvim-tree.renderer.icons*
|
*nvim-tree.renderer.icons*
|
||||||
Configuration options for icons.
|
Configuration options for icons.
|
||||||
|
|
||||||
Icon sign column precedence:
|
Icon order and sign column precedence:
|
||||||
diagnostics > modified > git > bookmarked
|
git < modified < bookmarked < diagnostics
|
||||||
|
|
||||||
*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"`
|
||||||
@@ -907,7 +950,7 @@ Icon sign column precedence:
|
|||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.web_devicons.file.color*
|
*nvim-tree.renderer.icons.web_devicons.file.color*
|
||||||
Use icon colors for files.
|
Use icon colors for files. Overrides highlight groups.
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.web_devicons.folder*
|
*nvim-tree.renderer.icons.web_devicons.folder*
|
||||||
@@ -919,7 +962,7 @@ Icon sign column precedence:
|
|||||||
Type: `boolean`, Default: `false`
|
Type: `boolean`, Default: `false`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.web_devicons.folder.color*
|
*nvim-tree.renderer.icons.web_devicons.folder.color*
|
||||||
Use icon colors for folders.
|
Use icon colors for folders. Overrides highlight groups.
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
*nvim-tree.renderer.icons.git_placement*
|
*nvim-tree.renderer.icons.git_placement*
|
||||||
@@ -1060,20 +1103,26 @@ Enable this feature.
|
|||||||
Type: `boolean`, Default: `false`
|
Type: `boolean`, Default: `false`
|
||||||
|
|
||||||
*nvim-tree.update_focused_file.update_root*
|
*nvim-tree.update_focused_file.update_root*
|
||||||
(previously `update_focused_file.update_cwd`)
|
|
||||||
Update the root directory of the tree if the file is not under current
|
Update the root directory of the tree if the file is not under current
|
||||||
root directory. It prefers vim's cwd and `root_dirs`.
|
root directory. It prefers vim's cwd and `root_dirs`.
|
||||||
Otherwise it falls back to the folder containing the file.
|
Otherwise it falls back to the folder containing the file.
|
||||||
Only relevant when `update_focused_file.enable` is `true`
|
Only relevant when `update_focused_file.enable` is `true`
|
||||||
|
|
||||||
|
*nvim-tree.update_focused_file.update_root.enable*
|
||||||
Type: `boolean`, Default: `false`
|
Type: `boolean`, Default: `false`
|
||||||
|
|
||||||
*nvim-tree.update_focused_file.ignore_list*
|
*nvim-tree.update_focused_file.update_root.ignore_list*
|
||||||
List of buffer names and filetypes that will not update the root dir
|
List of buffer names and filetypes that will not update the root dir
|
||||||
of the tree if the file isn't found under the current root directory.
|
of the tree if the file isn't found under the current root directory.
|
||||||
Only relevant when `update_focused_file.update_root` and
|
Only relevant when `update_focused_file.update_root.enable` and
|
||||||
`update_focused_file.enable` are `true`.
|
`update_focused_file.enable` are `true`.
|
||||||
Type: {string}, Default: `{}`
|
Type: {string}, Default: `{}`
|
||||||
|
|
||||||
|
*nvim-tree.update_focused_file.exclude*
|
||||||
|
A function that returns true if the file should not be focused when opening.
|
||||||
|
Takes the `BufEnter` event as an argument. see |autocmd-events|
|
||||||
|
Type: {function}, Default: `false`
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
5.6 OPTS: SYSTEM OPEN *nvim-tree-opts-system-open*
|
5.6 OPTS: SYSTEM OPEN *nvim-tree-opts-system-open*
|
||||||
|
|
||||||
@@ -1203,7 +1252,12 @@ Only relevant when |modified.show_on_dirs| is `true`.
|
|||||||
|
|
||||||
File / folder filters that may be toggled.
|
File / folder filters that may be toggled.
|
||||||
|
|
||||||
*nvim-tree.filters.git_ignored* (previously `git.ignore`)
|
*nvim-tree.filters.enable*
|
||||||
|
Enable / disable all filters including live filter.
|
||||||
|
Toggle via |nvim-tree-api.tree.toggle_enable_filters()|
|
||||||
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
|
*nvim-tree.filters.git_ignored*
|
||||||
Ignore files based on `.gitignore`. Requires |git.enable| `= true`
|
Ignore files based on `.gitignore`. Requires |git.enable| `= true`
|
||||||
Toggle via |nvim-tree-api.tree.toggle_gitignore_filter()|, default `I`
|
Toggle via |nvim-tree-api.tree.toggle_gitignore_filter()|, default `I`
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
@@ -1236,7 +1290,7 @@ Enabling this is not useful as there is no means yet to persist bookmarks.
|
|||||||
Custom list of vim regex for file/directory names that will not be shown.
|
Custom list of vim regex for file/directory names that will not be shown.
|
||||||
Backslashes must be escaped e.g. "^\\.git". See |string-match|.
|
Backslashes must be escaped e.g. "^\\.git". See |string-match|.
|
||||||
Toggle via |nvim-tree-api.tree.toggle_custom_filter()|, default `U`
|
Toggle via |nvim-tree-api.tree.toggle_custom_filter()|, default `U`
|
||||||
Type: {string}, Default: `{}`
|
Type: {string} | `function(absolute_path)`, Default: `{}`
|
||||||
|
|
||||||
*nvim-tree.filters.exclude*
|
*nvim-tree.filters.exclude*
|
||||||
List of directories or files to exclude from filtering: always show them.
|
List of directories or files to exclude from filtering: always show them.
|
||||||
@@ -1350,7 +1404,7 @@ Configuration options for opening a file from nvim-tree.
|
|||||||
Prevent new opened file from opening in the same window as the tree.
|
Prevent new opened file from opening in the same window as the tree.
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
*nvim-tree.actions.open_file.resize_window* (previously `view.auto_resize`)
|
*nvim-tree.actions.open_file.resize_window*
|
||||||
Resizes the tree when opening a file.
|
Resizes the tree when opening a file.
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
@@ -1418,7 +1472,7 @@ Windows default `"trash"` requires `trash-cli` or similar
|
|||||||
*nvim-tree.tab.sync*
|
*nvim-tree.tab.sync*
|
||||||
Configuration for syncing nvim-tree across tabs.
|
Configuration for syncing nvim-tree across tabs.
|
||||||
|
|
||||||
*nvim-tree.tab.sync.open* (previously `nvim-tree.open_on_tab`)
|
*nvim-tree.tab.sync.open*
|
||||||
Opens the tree automatically when switching tabpage or opening a new
|
Opens the tree automatically when switching tabpage or opening a new
|
||||||
tabpage if the tree was previously open.
|
tabpage if the tree was previously open.
|
||||||
Type: `boolean`, Default: `false`
|
Type: `boolean`, Default: `false`
|
||||||
@@ -1427,7 +1481,7 @@ Configuration for syncing nvim-tree across tabs.
|
|||||||
Closes the tree across all tabpages when the tree is closed.
|
Closes the tree across all tabpages when the tree is closed.
|
||||||
Type: `boolean`, Default: `false`
|
Type: `boolean`, Default: `false`
|
||||||
|
|
||||||
*nvim-tree.tab.sync.ignore* (previously `nvim-tree.ignore_buf_on_tab_change`)
|
*nvim-tree.tab.sync.ignore*
|
||||||
List of filetypes or buffer names on new tab that will prevent
|
List of filetypes or buffer names on new tab that will prevent
|
||||||
|nvim-tree.tab.sync.open| and |nvim-tree.tab.sync.close|
|
|nvim-tree.tab.sync.open| and |nvim-tree.tab.sync.close|
|
||||||
Type: {string}, Default: `{}`
|
Type: {string}, Default: `{}`
|
||||||
@@ -1467,7 +1521,7 @@ Confirmation prompts.
|
|||||||
Prompt before removing.
|
Prompt before removing.
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
*nvim-tree.ui.confirm.trash* (previously `trash.require_confirm`)
|
*nvim-tree.ui.confirm.trash*
|
||||||
Prompt before trashing.
|
Prompt before trashing.
|
||||||
Type: `boolean`, Default: `true`
|
Type: `boolean`, Default: `true`
|
||||||
|
|
||||||
@@ -1663,6 +1717,10 @@ tree.expand_all() *nvim-tree-api.tree.expand_all()*
|
|||||||
Recursively expand all nodes in the tree.
|
Recursively expand all nodes in the tree.
|
||||||
Folder: only the nodes underneath that folder.
|
Folder: only the nodes underneath that folder.
|
||||||
|
|
||||||
|
*nvim-tree-api.tree.toggle_enable_filters()*
|
||||||
|
tree.toggle_enable_filters()
|
||||||
|
Toggle |nvim-tree.filters.enable| all filters.
|
||||||
|
|
||||||
*nvim-tree-api.tree.toggle_gitignore_filter()*
|
*nvim-tree-api.tree.toggle_gitignore_filter()*
|
||||||
tree.toggle_gitignore_filter()
|
tree.toggle_gitignore_filter()
|
||||||
Toggle |nvim-tree.filters.git_ignored| filter.
|
Toggle |nvim-tree.filters.git_ignored| filter.
|
||||||
@@ -1843,6 +1901,12 @@ node.open.vertical() *nvim-tree-api.node.open.vertical()*
|
|||||||
node.open.horizontal() *nvim-tree-api.node.open.horizontal()*
|
node.open.horizontal() *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()*
|
||||||
|
node.open.toggle_group_empty()
|
||||||
|
Toggle |nvim-tree.renderer.group_empty| for a specific folder.
|
||||||
|
Does nothing on files.
|
||||||
|
Needs |nvim-tree.renderer.group_empty| set.
|
||||||
|
|
||||||
node.open.drop() *nvim-tree-api.node.open.drop()*
|
node.open.drop() *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.
|
||||||
@@ -1875,6 +1939,12 @@ node.open.preview_no_picker() *nvim-tree-api.node.open.preview_no_picker()*
|
|||||||
node.navigate.git.next() *nvim-tree-api.node.navigate.git.next()*
|
node.navigate.git.next() *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()*
|
||||||
|
node.navigate.git.next_recursive()
|
||||||
|
Alternative to |nvim-tree-api.node.navigate.git.next()| that navigates to
|
||||||
|
the next file showing git status, recursively.
|
||||||
|
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()
|
||||||
Same as |node.navigate.git.next()|, but skips gitignored files.
|
Same as |node.navigate.git.next()|, but skips gitignored files.
|
||||||
@@ -1882,6 +1952,12 @@ node.navigate.git.next_skip_gitignored()
|
|||||||
node.navigate.git.prev() *nvim-tree-api.node.navigate.git.prev()*
|
node.navigate.git.prev() *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()*
|
||||||
|
node.navigate.git.prev_recursive()
|
||||||
|
Alternative to |nvim-tree-api.node.navigate.git.prev()| that navigates to
|
||||||
|
the previous file showing git status, recursively.
|
||||||
|
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()
|
||||||
Same as |node.navigate.git.prev()|, but skips gitignored files.
|
Same as |node.navigate.git.prev()|, but skips gitignored files.
|
||||||
@@ -1890,10 +1966,22 @@ node.navigate.git.prev_skip_gitignored()
|
|||||||
node.navigate.diagnostics.next()
|
node.navigate.diagnostics.next()
|
||||||
Navigate to the next item showing diagnostic status.
|
Navigate to the next item showing diagnostic status.
|
||||||
|
|
||||||
|
*nvim-tree-api.node.navigate.diagnostics.next_recursive()*
|
||||||
|
node.navigate.diagnostics.next_recursive()
|
||||||
|
Alternative to |nvim-tree-api.node.navigate.diagnostics.next()| that
|
||||||
|
navigates to the next file showing diagnostic status, recursively.
|
||||||
|
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()
|
||||||
Navigate to the next item showing diagnostic status.
|
Navigate to the next item showing diagnostic status.
|
||||||
|
|
||||||
|
*nvim-tree-api.node.navigate.diagnostics.prev_recursive()*
|
||||||
|
node.navigate.diagnostics.prev_recursive()
|
||||||
|
Alternative to |nvim-tree-api.node.navigate.diagnostics.prev()| that
|
||||||
|
navigates to the previous file showing diagnostic status, recursively.
|
||||||
|
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()
|
||||||
Navigate to the next |bufloaded()| item.
|
Navigate to the next |bufloaded()| item.
|
||||||
@@ -2041,7 +2129,7 @@ config.mappings.get_keymap_default()
|
|||||||
(table) as per |nvim_buf_get_keymap()|
|
(table) as per |nvim_buf_get_keymap()|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
6.8 API COMMANDS *nvim-tree-api.commands*
|
6.9 API COMMANDS *nvim-tree-api.commands*
|
||||||
|
|
||||||
commands.get() *nvim-tree-api.commands.get()*
|
commands.get() *nvim-tree-api.commands.get()*
|
||||||
Retrieve all commands, see |nvim-tree-commands|
|
Retrieve all commands, see |nvim-tree-commands|
|
||||||
@@ -2052,6 +2140,15 @@ commands.get() *nvim-tree-api.commands.get()*
|
|||||||
• {command} (function)
|
• {command} (function)
|
||||||
• {opts} (table)
|
• {opts} (table)
|
||||||
|
|
||||||
|
==============================================================================
|
||||||
|
6.10 DIAGNOSTICS *nvim-tree-api.diagnostics*
|
||||||
|
|
||||||
|
diagnostics.hi_test() *nvim-tree-api.diagnostics.hi_test()*
|
||||||
|
Open a new buffer displaying all nvim-tree highlight groups, their link
|
||||||
|
chain and concrete definition.
|
||||||
|
|
||||||
|
Similar to `:so $VIMRUNTIME/syntax/hitest.vim` as per |:highlight|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
7. MAPPINGS *nvim-tree-mappings*
|
7. MAPPINGS *nvim-tree-mappings*
|
||||||
|
|
||||||
@@ -2163,10 +2260,12 @@ You are encouraged to copy these to your own |nvim-tree.on_attach| function.
|
|||||||
vim.keymap.set('n', 'f', api.live_filter.start, opts('Live Filter: Start'))
|
vim.keymap.set('n', 'f', api.live_filter.start, opts('Live Filter: Start'))
|
||||||
vim.keymap.set('n', 'g?', api.tree.toggle_help, opts('Help'))
|
vim.keymap.set('n', 'g?', api.tree.toggle_help, opts('Help'))
|
||||||
vim.keymap.set('n', 'gy', api.fs.copy.absolute_path, opts('Copy Absolute Path'))
|
vim.keymap.set('n', 'gy', api.fs.copy.absolute_path, opts('Copy Absolute Path'))
|
||||||
|
vim.keymap.set('n', 'ge', api.fs.copy.basename, opts('Copy Basename'))
|
||||||
vim.keymap.set('n', 'H', api.tree.toggle_hidden_filter, opts('Toggle Filter: Dotfiles'))
|
vim.keymap.set('n', 'H', api.tree.toggle_hidden_filter, opts('Toggle Filter: Dotfiles'))
|
||||||
vim.keymap.set('n', 'I', api.tree.toggle_gitignore_filter, opts('Toggle Filter: Git Ignore'))
|
vim.keymap.set('n', 'I', api.tree.toggle_gitignore_filter, opts('Toggle Filter: Git Ignore'))
|
||||||
vim.keymap.set('n', 'J', api.node.navigate.sibling.last, opts('Last Sibling'))
|
vim.keymap.set('n', 'J', api.node.navigate.sibling.last, opts('Last Sibling'))
|
||||||
vim.keymap.set('n', 'K', api.node.navigate.sibling.first, opts('First Sibling'))
|
vim.keymap.set('n', 'K', api.node.navigate.sibling.first, opts('First Sibling'))
|
||||||
|
vim.keymap.set('n', 'L', api.node.open.toggle_group_empty, opts('Toggle Group Empty'))
|
||||||
vim.keymap.set('n', 'M', api.tree.toggle_no_bookmark_filter, opts('Toggle Filter: No Bookmark'))
|
vim.keymap.set('n', 'M', api.tree.toggle_no_bookmark_filter, opts('Toggle Filter: No Bookmark'))
|
||||||
vim.keymap.set('n', 'm', api.marks.toggle, opts('Toggle Bookmark'))
|
vim.keymap.set('n', 'm', api.marks.toggle, opts('Toggle Bookmark'))
|
||||||
vim.keymap.set('n', 'o', api.node.open.edit, opts('Open'))
|
vim.keymap.set('n', 'o', api.node.open.edit, opts('Open'))
|
||||||
@@ -2213,42 +2312,32 @@ groups.
|
|||||||
Example |:highlight| >
|
Example |:highlight| >
|
||||||
:hi NvimTreeSymlink guifg=blue gui=bold,underline
|
:hi NvimTreeSymlink guifg=blue gui=bold,underline
|
||||||
<
|
<
|
||||||
You should have 'termguicolors' enabled, otherwise, colors will not be
|
It is recommended to enable 'termguicolors' for the more pleasant 24-bit
|
||||||
applied.
|
colours.
|
||||||
|
|
||||||
To view the active highlight groups run `:so $VIMRUNTIME/syntax/hitest.vim`
|
To view the nvim-tree highlight groups run |:NvimTreeHiTest|
|
||||||
|
|
||||||
|
To view all active highlight groups run `:so $VIMRUNTIME/syntax/hitest.vim`
|
||||||
as per |:highlight|
|
as per |:highlight|
|
||||||
|
|
||||||
Default linked group follows name.
|
The `*HL` groups are additive as per |nvim-tree-opts-renderer| precedence.
|
||||||
|
Only present attributes will clobber each other.
|
||||||
|
In this example a modified, opened file will have magenta text, with cyan
|
||||||
|
undercurl: >
|
||||||
|
:hi NvimTreeOpenedHL guifg=magenta guisp=red gui=underline
|
||||||
|
:hi NvimTreeModifiedFileHL guisp=cyan gui=undercurl
|
||||||
|
<
|
||||||
|
To prevent usage of a highlight:
|
||||||
|
- Before setup: link the group to `Normal` e.g.
|
||||||
|
`:hi NvimTreeExecFile Normal`
|
||||||
|
- After setup: link it to `NONE`, to override the default link e.g.
|
||||||
|
`:hi! link NvimTreeExecFile NONE`
|
||||||
|
|
||||||
|
==============================================================================
|
||||||
|
8.1 HIGHLIGHT: DEFAULT *nvim-tree-highlight-default*
|
||||||
|
|
||||||
|
|:highlight-link| `default` or |:highlight-default| define the groups on setup:
|
||||||
|
|
||||||
File Text: >
|
|
||||||
NvimTreeSymlink
|
|
||||||
NvimTreeExecFile
|
|
||||||
NvimTreeOpenedFile
|
|
||||||
NvimTreeModifiedFile
|
|
||||||
NvimTreeSpecialFile
|
|
||||||
NvimTreeImageFile
|
|
||||||
<
|
|
||||||
Folder Text: >
|
|
||||||
NvimTreeFolderName Directory
|
|
||||||
NvimTreeEmptyFolderName Directory
|
|
||||||
NvimTreeOpenedFolderName Directory
|
|
||||||
NvimTreeSymlinkFolderName Directory
|
|
||||||
NvimTreeRootFolder
|
|
||||||
<
|
|
||||||
Icon: >
|
|
||||||
NvimTreeFileIcon
|
|
||||||
NvimTreeOpenedFileIcon NvimTreeOpenedFile
|
|
||||||
NvimTreeSymlinkIcon
|
|
||||||
NvimTreeFolderIcon
|
|
||||||
NvimTreeOpenedFolderIcon NvimTreeFolderIcon
|
|
||||||
NvimTreeClosedFolderIcon NvimTreeFolderIcon
|
|
||||||
NvimTreeFolderArrowClosed NvimTreeIndentMarker
|
|
||||||
NvimTreeFolderArrowOpen NvimTreeIndentMarker
|
|
||||||
<
|
|
||||||
Indent: >
|
|
||||||
NvimTreeIndentMarker
|
|
||||||
<
|
|
||||||
Standard: >
|
Standard: >
|
||||||
NvimTreeNormal Normal
|
NvimTreeNormal Normal
|
||||||
NvimTreeNormalFloat NormalFloat
|
NvimTreeNormalFloat NormalFloat
|
||||||
@@ -2267,67 +2356,137 @@ Standard: >
|
|||||||
NvimTreeStatusLine StatusLine
|
NvimTreeStatusLine StatusLine
|
||||||
NvimTreeStatusLineNC StatusLineNC
|
NvimTreeStatusLineNC StatusLineNC
|
||||||
<
|
<
|
||||||
|
File Text: >
|
||||||
|
NvimTreeExecFile SpellCap
|
||||||
|
NvimTreeImageFile SpellCap
|
||||||
|
NvimTreeSpecialFile SpellCap
|
||||||
|
NvimTreeSymlink SpellCap
|
||||||
|
<
|
||||||
|
Folder Text: >
|
||||||
|
NvimTreeRootFolder Title
|
||||||
|
NvimTreeFolderName Directory
|
||||||
|
NvimTreeEmptyFolderName Directory
|
||||||
|
NvimTreeOpenedFolderName Directory
|
||||||
|
NvimTreeSymlinkFolderName Directory
|
||||||
|
<
|
||||||
|
File Icons: >
|
||||||
|
NvimTreeFileIcon NvimTreeNormal
|
||||||
|
NvimTreeSymlinkIcon NvimTreeNormal
|
||||||
|
<
|
||||||
|
Folder Icons: >
|
||||||
|
NvimTreeFolderIcon guifg=#8094b4 ctermfg=Blue
|
||||||
|
NvimTreeOpenedFolderIcon NvimTreeFolderIcon
|
||||||
|
NvimTreeClosedFolderIcon NvimTreeFolderIcon
|
||||||
|
NvimTreeFolderArrowClosed NvimTreeIndentMarker
|
||||||
|
NvimTreeFolderArrowOpen NvimTreeIndentMarker
|
||||||
|
<
|
||||||
|
Indent: >
|
||||||
|
NvimTreeIndentMarker NvimTreeFileIcon
|
||||||
|
<
|
||||||
|
Picker: >
|
||||||
|
NvimTreeWindowPicker guifg=#ededed guibg=#4493c8 gui=bold ctermfg=White ctermbg=Cyan
|
||||||
|
<
|
||||||
|
Live Filter: >
|
||||||
|
NvimTreeLiveFilterPrefix PreProc
|
||||||
|
NvimTreeLiveFilterValue ModeMsg
|
||||||
|
<
|
||||||
Clipboard: >
|
Clipboard: >
|
||||||
NvimTreeCopiedHL SpellRare
|
NvimTreeCopiedHL SpellRare
|
||||||
NvimTreeCutHL SpellBad
|
NvimTreeCutHL SpellBad
|
||||||
<
|
<
|
||||||
Bookmark Icon: >
|
Bookmarks: >
|
||||||
NvimTreeBookmark
|
NvimTreeBookmarkIcon NvimTreeFolderIcon
|
||||||
<
|
|
||||||
Bookmark Highlight: >
|
|
||||||
NvimTreeBookmarkHL SpellLocal
|
NvimTreeBookmarkHL SpellLocal
|
||||||
<
|
<
|
||||||
Picker: >
|
Modified: >
|
||||||
NvimTreeWindowPicker
|
NvimTreeModifiedIcon Type
|
||||||
|
NvimTreeModifiedFileHL NvimTreeModifiedIcon
|
||||||
|
NvimTreeModifiedFolderHL NvimTreeModifiedIcon
|
||||||
<
|
<
|
||||||
Live Filter: >
|
Opened: >
|
||||||
NvimTreeLiveFilterPrefix
|
NvimTreeOpenedHL Special
|
||||||
NvimTreeLiveFilterValue
|
|
||||||
<
|
<
|
||||||
Git Icon: >
|
Git Icon: >
|
||||||
NvimTreeGitDirty
|
NvimTreeGitDeletedIcon Statement
|
||||||
NvimTreeGitStaged
|
NvimTreeGitDirtyIcon Statement
|
||||||
NvimTreeGitMerge
|
NvimTreeGitIgnoredIcon Comment
|
||||||
NvimTreeGitRenamed
|
NvimTreeGitMergeIcon Constant
|
||||||
NvimTreeGitNew
|
NvimTreeGitNewIcon PreProc
|
||||||
NvimTreeGitDeleted
|
NvimTreeGitRenamedIcon PreProc
|
||||||
NvimTreeGitIgnored Comment
|
NvimTreeGitStagedIcon Constant
|
||||||
<
|
<
|
||||||
Git File Text: >
|
Git File File Highlight: >
|
||||||
NvimTreeFileDirty NvimTreeGitDirty
|
NvimTreeGitFileDeletedHL NvimTreeGitDeletedIcon
|
||||||
NvimTreeFileStaged NvimTreeGitStaged
|
NvimTreeGitFileDirtyHL NvimTreeGitDirtyIcon
|
||||||
NvimTreeFileMerge NvimTreeGitMerge
|
NvimTreeGitFileIgnoredHL NvimTreeGitIgnoredIcon
|
||||||
NvimTreeFileRenamed NvimTreeGitRenamed
|
NvimTreeGitFileMergeHL NvimTreeGitMergeIcon
|
||||||
NvimTreeFileNew NvimTreeGitNew
|
NvimTreeGitFileNewHL NvimTreeGitNewIcon
|
||||||
NvimTreeFileDeleted NvimTreeGitDeleted
|
NvimTreeGitFileRenamedHL NvimTreeGitRenamedIcon
|
||||||
NvimTreeFileIgnored NvimTreeGitIgnored
|
NvimTreeGitFileStagedHL NvimTreeGitStagedIcon
|
||||||
<
|
<
|
||||||
Git Folder Text: >
|
Git Folder Folder Highlight: >
|
||||||
NvimTreeFolderDirty NvimTreeFileDirty
|
NvimTreeGitFolderDeletedHL NvimTreeGitFileDeletedHL
|
||||||
NvimTreeFolderStaged NvimTreeFileStaged
|
NvimTreeGitFolderDirtyHL NvimTreeGitFileDirtyHL
|
||||||
NvimTreeFolderMerge NvimTreeFileMerge
|
NvimTreeGitFolderIgnoredHL NvimTreeGitFileIgnoredHL
|
||||||
NvimTreeFolderRenamed NvimTreeFileRenamed
|
NvimTreeGitFolderMergeHL NvimTreeGitFileMergeHL
|
||||||
NvimTreeFolderNew NvimTreeFileNew
|
NvimTreeGitFolderNewHL NvimTreeGitFileNewHL
|
||||||
NvimTreeFolderDeleted NvimTreeFileDeleted
|
NvimTreeGitFolderRenamedHL NvimTreeGitFileRenamedHL
|
||||||
NvimTreeFolderIgnored NvimTreeFileIgnored
|
NvimTreeGitFolderStagedHL NvimTreeGitFileStagedHL
|
||||||
<
|
<
|
||||||
Diagnostics Icon: >
|
Diagnostics Icon: >
|
||||||
NvimTreeLspDiagnosticsError DiagnosticError
|
NvimTreeDiagnosticErrorIcon DiagnosticError
|
||||||
NvimTreeLspDiagnosticsWarning DiagnosticWarn
|
NvimTreeDiagnosticWarnIcon DiagnosticWarn
|
||||||
NvimTreeLspDiagnosticsInformation DiagnosticInfo
|
NvimTreeDiagnosticInfoIcon DiagnosticInfo
|
||||||
NvimTreeLspDiagnosticsHint DiagnosticHint
|
NvimTreeDiagnosticHintIcon DiagnosticHint
|
||||||
<
|
<
|
||||||
Diagnostics File Text: >
|
Diagnostics File Highlight: >
|
||||||
NvimTreeLspDiagnosticsErrorText NvimTreeLspDiagnosticsError
|
NvimTreeDiagnosticErrorFileHL DiagnosticUnderlineError
|
||||||
NvimTreeLspDiagnosticsWarningText NvimTreeLspDiagnosticsWarning
|
NvimTreeDiagnosticWarnFileHL DiagnosticUnderlineWarn
|
||||||
NvimTreeLspDiagnosticsInfoText NvimTreeLspDiagnosticsInformation
|
NvimTreeDiagnosticInfoFileHL DiagnosticUnderlineInfo
|
||||||
NvimTreeLspDiagnosticsHintText NvimTreeLspDiagnosticsHint
|
NvimTreeDiagnosticHintFileHL DiagnosticUnderlineHint
|
||||||
<
|
<
|
||||||
Diagnostics Folder Text: >
|
Diagnostics Folder Highlight: >
|
||||||
NvimTreeLspDiagnosticsErrorFolderText NvimTreeLspDiagnosticsErrorText
|
NvimTreeDiagnosticErrorFolderHL NvimTreeDiagnosticErrorFileHL
|
||||||
NvimTreeLspDiagnosticsWarningFolderText NvimTreeLspDiagnosticsWarningText
|
NvimTreeDiagnosticWarnFolderHL NvimTreeDiagnosticWarnFileHL
|
||||||
NvimTreeLspDiagnosticsInfoFolderText NvimTreeLspDiagnosticsInfoText
|
NvimTreeDiagnosticInfoFolderHL NvimTreeDiagnosticInfoFileHL
|
||||||
NvimTreeLspDiagnosticsHintFolderText NvimTreeLspDiagnosticsHintText
|
NvimTreeDiagnosticHintFolderHL NvimTreeDiagnosticHintFileHL
|
||||||
|
<
|
||||||
|
==============================================================================
|
||||||
|
8.2 HIGHLIGHT: OVERHAUL *nvim-tree-highlight-overhaul*
|
||||||
|
|
||||||
|
See |nvim-tree-legacy-highlight| for old highlight group compatibility.
|
||||||
|
|
||||||
|
2024-01-20: significant highlighting changes, some breaking:
|
||||||
|
|
||||||
|
- Full cterm support.
|
||||||
|
- Standard vim highlight groups such |DiagnosticUnderlineError| are now the
|
||||||
|
defaults.
|
||||||
|
- Highlight groups named consistently.
|
||||||
|
- All `highlight_xxx` e.g. |nvim-tree.renderer.highlight_git| are granular,
|
||||||
|
allowing `"none"`, `"icon"`, `"name"` or `"all"`
|
||||||
|
- `highlight_xxx` has highlight groups for both File and Folder
|
||||||
|
- `highlight_xxx` is additive instead of overwriting. See
|
||||||
|
|nvim-tree-opts-renderer| for precedence.
|
||||||
|
|
||||||
|
2024-01-29: disambiguate default highlights sharing groups:
|
||||||
|
|
||||||
|
- NvimTreeRootFolder PreProc -> Title
|
||||||
|
- NvimTreeModified* Constant -> Type
|
||||||
|
- NvimTreeOpenedHL Constant -> Special
|
||||||
|
- NvimTreeBookmarkIcon Constant -> NvimTreeFolderIcon
|
||||||
|
- NvimTreeExecFile Constant -> SpellCap
|
||||||
|
- NvimTreeImageFile PreProc -> SpellCap
|
||||||
|
- NvimTreeSpecialFile PreProc -> SpellCap
|
||||||
|
- NvimTreeSymlink Statement -> SpellCap
|
||||||
|
|
||||||
|
Approximate pre-overhaul values for the `SpellCap` groups may be set via: >
|
||||||
|
|
||||||
|
vim.cmd([[
|
||||||
|
:hi NvimTreeExecFile gui=bold guifg=#ffa0a0
|
||||||
|
:hi NvimTreeSymlink gui=bold guifg=#ffff60
|
||||||
|
:hi NvimTreeSpecialFile gui=bold,underline guifg=#ff80ff
|
||||||
|
:hi NvimTreeImageFile gui=bold guifg=#ff80ff
|
||||||
|
]])
|
||||||
<
|
<
|
||||||
==============================================================================
|
==============================================================================
|
||||||
9. EVENTS *nvim-tree-events*
|
9. EVENTS *nvim-tree-events*
|
||||||
@@ -2501,4 +2660,343 @@ keep using |netrw| without its browser features please ensure:
|
|||||||
|nvim-tree.disable_netrw| `= false`
|
|nvim-tree.disable_netrw| `= false`
|
||||||
|nvim-tree.hijack_netrw| ` = true`
|
|nvim-tree.hijack_netrw| ` = true`
|
||||||
|
|
||||||
|
==============================================================================
|
||||||
|
13. LEGACY *nvim-tree-legacy*
|
||||||
|
|
||||||
|
Breaking refactors have been made however the legacy versions will be silently
|
||||||
|
migrated and used.
|
||||||
|
There are no plans to remove this migration.
|
||||||
|
|
||||||
|
==============================================================================
|
||||||
|
13.1 LEGACY: OPTS *nvim-tree-legacy-opts*
|
||||||
|
|
||||||
|
Legacy options are translated to the current, making type and value changes as
|
||||||
|
needed.
|
||||||
|
|
||||||
|
`update_cwd` |nvim-tree.sync_root_with_cwd|
|
||||||
|
`update_focused_file.update_cwd` |nvim-tree.update_focused_file.update_root|
|
||||||
|
`open_on_tab` |nvim-tree.tab.sync.open|
|
||||||
|
`ignore_buf_on_tab_change` |nvim-tree.tab.sync.ignore|
|
||||||
|
`renderer.root_folder_modifier` |nvim-tree.renderer.root_folder_label|
|
||||||
|
`update_focused_file.debounce_delay` |nvim-tree.view.debounce_delay|
|
||||||
|
`trash.require_confirm` |nvim-tree.ui.confirm.trash|
|
||||||
|
`view.adaptive_size` |nvim-tree.view.width|
|
||||||
|
`sort_by` |nvim-tree.sort.sorter|
|
||||||
|
`git.ignore` |nvim-tree.filters.git_ignored|
|
||||||
|
`renderer.icons.webdev_colors` |nvim-tree.renderer.icons.web_devicons.file.color|
|
||||||
|
|
||||||
|
==============================================================================
|
||||||
|
13.2 LEGACY: HIGHLIGHT *nvim-tree-legacy-highlight*
|
||||||
|
|
||||||
|
Legacy highlight group are still obeyed when they are defined and the current
|
||||||
|
highlight group is not, hard linking as follows: >
|
||||||
|
|
||||||
|
NvimTreeModifiedIcon NvimTreeModifiedFile
|
||||||
|
NvimTreeOpenedHL NvimTreeOpenedFile
|
||||||
|
NvimTreeBookmarkIcon NvimTreeBookmark
|
||||||
|
|
||||||
|
NvimTreeGitDeletedIcon NvimTreeGitDeleted
|
||||||
|
NvimTreeGitDirtyIcon NvimTreeGitDirty
|
||||||
|
NvimTreeGitIgnoredIcon NvimTreeGitIgnored
|
||||||
|
NvimTreeGitMergeIcon NvimTreeGitMerge
|
||||||
|
NvimTreeGitNewIcon NvimTreeGitNew
|
||||||
|
NvimTreeGitRenamedIcon NvimTreeGitRenamed
|
||||||
|
NvimTreeGitStagedIcon NvimTreeGitStaged
|
||||||
|
|
||||||
|
NvimTreeGitFileDeletedHL NvimTreeFileDeleted
|
||||||
|
NvimTreeGitFileDirtyHL NvimTreeFileDirty
|
||||||
|
NvimTreeGitFileIgnoredHL NvimTreeFileIgnored
|
||||||
|
NvimTreeGitFileMergeHL NvimTreeFileMerge
|
||||||
|
NvimTreeGitFileNewHL NvimTreeFileNew
|
||||||
|
NvimTreeGitFileRenamedHL NvimTreeFileRenamed
|
||||||
|
NvimTreeGitFileStagedHL NvimTreeFileStaged
|
||||||
|
|
||||||
|
NvimTreeGitFolderDeletedHL NvimTreeFolderDeleted
|
||||||
|
NvimTreeGitFolderDirtyHL NvimTreeFolderDirty
|
||||||
|
NvimTreeGitFolderIgnoredHL NvimTreeFolderIgnored
|
||||||
|
NvimTreeGitFolderMergeHL NvimTreeFolderMerge
|
||||||
|
NvimTreeGitFolderNewHL NvimTreeFolderNew
|
||||||
|
NvimTreeGitFolderRenamedHL NvimTreeFolderRenamed
|
||||||
|
NvimTreeGitFolderStagedHL NvimTreeFolderStaged
|
||||||
|
|
||||||
|
NvimTreeLspDiagnosticsError NvimTreeDiagnosticErrorIcon
|
||||||
|
NvimTreeLspDiagnosticsWarning NvimTreeDiagnosticWarnIcon
|
||||||
|
NvimTreeLspDiagnosticsInformation NvimTreeDiagnosticInfoIcon
|
||||||
|
NvimTreeLspDiagnosticsHint NvimTreeDiagnosticHintIcon
|
||||||
|
|
||||||
|
NvimTreeLspDiagnosticsErrorText NvimTreeDiagnosticErrorFileHL
|
||||||
|
NvimTreeLspDiagnosticsWarningText NvimTreeDiagnosticWarnFileHL
|
||||||
|
NvimTreeLspDiagnosticsInformationText NvimTreeDiagnosticInfoFileHL
|
||||||
|
NvimTreeLspDiagnosticsHintText NvimTreeDiagnosticHintFileHL
|
||||||
|
|
||||||
|
NvimTreeLspDiagnosticsErrorFolderText NvimTreeDiagnosticErrorFolderHL
|
||||||
|
NvimTreeLspDiagnosticsWarningFolderText NvimTreeDiagnosticWarnFolderHL
|
||||||
|
NvimTreeLspDiagnosticsInformationFolderText NvimTreeDiagnosticInfoFolderHL
|
||||||
|
NvimTreeLspDiagnosticsHintFolderText NvimTreeDiagnosticHintFolderHL
|
||||||
|
<
|
||||||
|
==============================================================================
|
||||||
|
14 INDEX *nvim-tree-index*
|
||||||
|
|
||||||
|
==============================================================================
|
||||||
|
14.1 INDEX: OPTS *nvim-tree-index-opts*
|
||||||
|
|
||||||
|
|nvim-tree.actions.change_dir|
|
||||||
|
|nvim-tree.actions.change_dir.enable|
|
||||||
|
|nvim-tree.actions.change_dir.global|
|
||||||
|
|nvim-tree.actions.change_dir.restrict_above_cwd|
|
||||||
|
|nvim-tree.actions.expand_all|
|
||||||
|
|nvim-tree.actions.expand_all.exclude|
|
||||||
|
|nvim-tree.actions.expand_all.max_folder_discovery|
|
||||||
|
|nvim-tree.actions.file_popup|
|
||||||
|
|nvim-tree.actions.file_popup.open_win_config|
|
||||||
|
|nvim-tree.actions.open_file|
|
||||||
|
|nvim-tree.actions.open_file.eject|
|
||||||
|
|nvim-tree.actions.open_file.quit_on_open|
|
||||||
|
|nvim-tree.actions.open_file.resize_window|
|
||||||
|
|nvim-tree.actions.open_file.window_picker|
|
||||||
|
|nvim-tree.actions.open_file.window_picker.chars|
|
||||||
|
|nvim-tree.actions.open_file.window_picker.enable|
|
||||||
|
|nvim-tree.actions.open_file.window_picker.exclude|
|
||||||
|
|nvim-tree.actions.open_file.window_picker.picker|
|
||||||
|
|nvim-tree.actions.remove_file.close_window|
|
||||||
|
|nvim-tree.actions.use_system_clipboard|
|
||||||
|
|nvim-tree.auto_reload_on_write|
|
||||||
|
|nvim-tree.diagnostics.debounce_delay|
|
||||||
|
|nvim-tree.diagnostics.enable|
|
||||||
|
|nvim-tree.diagnostics.icons|
|
||||||
|
|nvim-tree.diagnostics.severity|
|
||||||
|
|nvim-tree.diagnostics.severity.max|
|
||||||
|
|nvim-tree.diagnostics.severity.min|
|
||||||
|
|nvim-tree.diagnostics.show_on_dirs|
|
||||||
|
|nvim-tree.diagnostics.show_on_open_dirs|
|
||||||
|
|nvim-tree.disable_netrw|
|
||||||
|
|nvim-tree.experimental|
|
||||||
|
|nvim-tree.filesystem_watchers.debounce_delay|
|
||||||
|
|nvim-tree.filesystem_watchers.enable|
|
||||||
|
|nvim-tree.filesystem_watchers.ignore_dirs|
|
||||||
|
|nvim-tree.filters.custom|
|
||||||
|
|nvim-tree.filters.dotfiles|
|
||||||
|
|nvim-tree.filters.enable|
|
||||||
|
|nvim-tree.filters.exclude|
|
||||||
|
|nvim-tree.filters.git_clean|
|
||||||
|
|nvim-tree.filters.git_ignored|
|
||||||
|
|nvim-tree.filters.no_bookmark|
|
||||||
|
|nvim-tree.filters.no_buffer|
|
||||||
|
|nvim-tree.git.cygwin_support|
|
||||||
|
|nvim-tree.git.disable_for_dirs|
|
||||||
|
|nvim-tree.git.enable|
|
||||||
|
|nvim-tree.git.show_on_dirs|
|
||||||
|
|nvim-tree.git.show_on_open_dirs|
|
||||||
|
|nvim-tree.git.timeout|
|
||||||
|
|nvim-tree.help.sort_by|
|
||||||
|
|nvim-tree.hijack_cursor|
|
||||||
|
|nvim-tree.hijack_directories.auto_open|
|
||||||
|
|nvim-tree.hijack_directories.enable|
|
||||||
|
|nvim-tree.hijack_netrw|
|
||||||
|
|nvim-tree.hijack_unnamed_buffer_when_opening|
|
||||||
|
|nvim-tree.live_filter.always_show_folders|
|
||||||
|
|nvim-tree.live_filter.prefix|
|
||||||
|
|nvim-tree.log.enable|
|
||||||
|
|nvim-tree.log.truncate|
|
||||||
|
|nvim-tree.log.types|
|
||||||
|
|nvim-tree.log.types.all|
|
||||||
|
|nvim-tree.log.types.config|
|
||||||
|
|nvim-tree.log.types.copy_paste|
|
||||||
|
|nvim-tree.log.types.dev|
|
||||||
|
|nvim-tree.log.types.diagnostics|
|
||||||
|
|nvim-tree.log.types.git|
|
||||||
|
|nvim-tree.log.types.profile|
|
||||||
|
|nvim-tree.log.types.watcher|
|
||||||
|
|nvim-tree.modified.enable|
|
||||||
|
|nvim-tree.modified.show_on_dirs|
|
||||||
|
|nvim-tree.modified.show_on_open_dirs|
|
||||||
|
|nvim-tree.notify.threshold|
|
||||||
|
|nvim-tree.on_attach|
|
||||||
|
|nvim-tree.prefer_startup_root|
|
||||||
|
|nvim-tree.reload_on_bufenter|
|
||||||
|
|nvim-tree.renderer.add_trailing|
|
||||||
|
|nvim-tree.renderer.full_name|
|
||||||
|
|nvim-tree.renderer.group_empty|
|
||||||
|
|nvim-tree.renderer.highlight_bookmarks|
|
||||||
|
|nvim-tree.renderer.highlight_clipboard|
|
||||||
|
|nvim-tree.renderer.highlight_diagnostics|
|
||||||
|
|nvim-tree.renderer.highlight_git|
|
||||||
|
|nvim-tree.renderer.highlight_modified|
|
||||||
|
|nvim-tree.renderer.highlight_opened_files|
|
||||||
|
|nvim-tree.renderer.icons|
|
||||||
|
|nvim-tree.renderer.icons.bookmarks_placement|
|
||||||
|
|nvim-tree.renderer.icons.diagnostics_placement|
|
||||||
|
|nvim-tree.renderer.icons.git_placement|
|
||||||
|
|nvim-tree.renderer.icons.glyphs|
|
||||||
|
|nvim-tree.renderer.icons.glyphs.default|
|
||||||
|
|nvim-tree.renderer.icons.glyphs.folder|
|
||||||
|
|nvim-tree.renderer.icons.glyphs.git|
|
||||||
|
|nvim-tree.renderer.icons.glyphs.modified|
|
||||||
|
|nvim-tree.renderer.icons.glyphs.symlink|
|
||||||
|
|nvim-tree.renderer.icons.modified_placement|
|
||||||
|
|nvim-tree.renderer.icons.padding|
|
||||||
|
|nvim-tree.renderer.icons.show|
|
||||||
|
|nvim-tree.renderer.icons.show.bookmarks|
|
||||||
|
|nvim-tree.renderer.icons.show.diagnostics|
|
||||||
|
|nvim-tree.renderer.icons.show.file|
|
||||||
|
|nvim-tree.renderer.icons.show.folder|
|
||||||
|
|nvim-tree.renderer.icons.show.folder_arrow|
|
||||||
|
|nvim-tree.renderer.icons.show.git|
|
||||||
|
|nvim-tree.renderer.icons.show.modified|
|
||||||
|
|nvim-tree.renderer.icons.symlink_arrow|
|
||||||
|
|nvim-tree.renderer.icons.web_devicons|
|
||||||
|
|nvim-tree.renderer.icons.web_devicons.file|
|
||||||
|
|nvim-tree.renderer.icons.web_devicons.file.color|
|
||||||
|
|nvim-tree.renderer.icons.web_devicons.file.enable|
|
||||||
|
|nvim-tree.renderer.icons.web_devicons.folder|
|
||||||
|
|nvim-tree.renderer.icons.web_devicons.folder.color|
|
||||||
|
|nvim-tree.renderer.icons.web_devicons.folder.enable|
|
||||||
|
|nvim-tree.renderer.indent_markers|
|
||||||
|
|nvim-tree.renderer.indent_markers.enable|
|
||||||
|
|nvim-tree.renderer.indent_markers.icons|
|
||||||
|
|nvim-tree.renderer.indent_markers.inline_arrows|
|
||||||
|
|nvim-tree.renderer.indent_width|
|
||||||
|
|nvim-tree.renderer.root_folder_label|
|
||||||
|
|nvim-tree.renderer.special_files|
|
||||||
|
|nvim-tree.renderer.symlink_destination|
|
||||||
|
|nvim-tree.respect_buf_cwd|
|
||||||
|
|nvim-tree.root_dirs|
|
||||||
|
|nvim-tree.select_prompts|
|
||||||
|
|nvim-tree.sort.files_first|
|
||||||
|
|nvim-tree.sort.folders_first|
|
||||||
|
|nvim-tree.sort.sorter|
|
||||||
|
|nvim-tree.sync_root_with_cwd|
|
||||||
|
|nvim-tree.system_open.args|
|
||||||
|
|nvim-tree.system_open.cmd|
|
||||||
|
|nvim-tree.tab.sync|
|
||||||
|
|nvim-tree.tab.sync.close|
|
||||||
|
|nvim-tree.tab.sync.ignore|
|
||||||
|
|nvim-tree.tab.sync.open|
|
||||||
|
|nvim-tree.trash.cmd|
|
||||||
|
|nvim-tree.ui.confirm|
|
||||||
|
|nvim-tree.ui.confirm.default_yes|
|
||||||
|
|nvim-tree.ui.confirm.remove|
|
||||||
|
|nvim-tree.ui.confirm.trash|
|
||||||
|
|nvim-tree.update_focused_file.enable|
|
||||||
|
|nvim-tree.update_focused_file.exclude|
|
||||||
|
|nvim-tree.update_focused_file.update_root|
|
||||||
|
|nvim-tree.update_focused_file.update_root.enable|
|
||||||
|
|nvim-tree.update_focused_file.update_root.ignore_list|
|
||||||
|
|nvim-tree.view.centralize_selection|
|
||||||
|
|nvim-tree.view.cursorline|
|
||||||
|
|nvim-tree.view.debounce_delay|
|
||||||
|
|nvim-tree.view.float|
|
||||||
|
|nvim-tree.view.float.enable|
|
||||||
|
|nvim-tree.view.float.open_win_config|
|
||||||
|
|nvim-tree.view.float.quit_on_focus_loss|
|
||||||
|
|nvim-tree.view.number|
|
||||||
|
|nvim-tree.view.preserve_window_proportions|
|
||||||
|
|nvim-tree.view.relativenumber|
|
||||||
|
|nvim-tree.view.side|
|
||||||
|
|nvim-tree.view.signcolumn|
|
||||||
|
|nvim-tree.view.width|
|
||||||
|
|nvim-tree.view.width.max|
|
||||||
|
|nvim-tree.view.width.min|
|
||||||
|
|nvim-tree.view.width.padding|
|
||||||
|
|
||||||
|
==============================================================================
|
||||||
|
14.2 INDEX: API *nvim-tree-index-api*
|
||||||
|
|
||||||
|
|nvim-tree-api.commands.get()|
|
||||||
|
|nvim-tree-api.config.mappings.default_on_attach()|
|
||||||
|
|nvim-tree-api.config.mappings.get_keymap()|
|
||||||
|
|nvim-tree-api.config.mappings.get_keymap_default()|
|
||||||
|
|nvim-tree-api.diagnostics.hi_test()|
|
||||||
|
|nvim-tree-api.events.subscribe()|
|
||||||
|
|nvim-tree-api.fs.clear_clipboard()|
|
||||||
|
|nvim-tree-api.fs.copy.absolute_path()|
|
||||||
|
|nvim-tree-api.fs.copy.filename()|
|
||||||
|
|nvim-tree-api.fs.copy.node()|
|
||||||
|
|nvim-tree-api.fs.copy.relative_path()|
|
||||||
|
|nvim-tree-api.fs.create()|
|
||||||
|
|nvim-tree-api.fs.cut()|
|
||||||
|
|nvim-tree-api.fs.paste()|
|
||||||
|
|nvim-tree-api.fs.print_clipboard()|
|
||||||
|
|nvim-tree-api.fs.remove()|
|
||||||
|
|nvim-tree-api.fs.rename()|
|
||||||
|
|nvim-tree-api.fs.rename_basename()|
|
||||||
|
|nvim-tree-api.fs.rename_full()|
|
||||||
|
|nvim-tree-api.fs.rename_node()|
|
||||||
|
|nvim-tree-api.fs.rename_sub()|
|
||||||
|
|nvim-tree-api.fs.trash()|
|
||||||
|
|nvim-tree-api.git.reload()|
|
||||||
|
|nvim-tree-api.live_filter.clear()|
|
||||||
|
|nvim-tree-api.live_filter.start()|
|
||||||
|
|nvim-tree-api.marks.bulk.delete()|
|
||||||
|
|nvim-tree-api.marks.bulk.move()|
|
||||||
|
|nvim-tree-api.marks.bulk.trash()|
|
||||||
|
|nvim-tree-api.marks.clear()|
|
||||||
|
|nvim-tree-api.marks.get()|
|
||||||
|
|nvim-tree-api.marks.list()|
|
||||||
|
|nvim-tree-api.marks.navigate.next()|
|
||||||
|
|nvim-tree-api.marks.navigate.prev()|
|
||||||
|
|nvim-tree-api.marks.navigate.select()|
|
||||||
|
|nvim-tree-api.marks.toggle()|
|
||||||
|
|nvim-tree-api.node.navigate.diagnostics.next()|
|
||||||
|
|nvim-tree-api.node.navigate.diagnostics.next_recursive()|
|
||||||
|
|nvim-tree-api.node.navigate.diagnostics.prev()|
|
||||||
|
|nvim-tree-api.node.navigate.diagnostics.prev_recursive()|
|
||||||
|
|nvim-tree-api.node.navigate.git.next()|
|
||||||
|
|nvim-tree-api.node.navigate.git.next_recursive()|
|
||||||
|
|nvim-tree-api.node.navigate.git.next_skip_gitignored()|
|
||||||
|
|nvim-tree-api.node.navigate.git.prev()|
|
||||||
|
|nvim-tree-api.node.navigate.git.prev_recursive()|
|
||||||
|
|nvim-tree-api.node.navigate.git.prev_skip_gitignored()|
|
||||||
|
|nvim-tree-api.node.navigate.opened.next()|
|
||||||
|
|nvim-tree-api.node.navigate.opened.prev()|
|
||||||
|
|nvim-tree-api.node.navigate.parent()|
|
||||||
|
|nvim-tree-api.node.navigate.parent_close()|
|
||||||
|
|nvim-tree-api.node.navigate.sibling.first()|
|
||||||
|
|nvim-tree-api.node.navigate.sibling.last()|
|
||||||
|
|nvim-tree-api.node.navigate.sibling.next()|
|
||||||
|
|nvim-tree-api.node.navigate.sibling.prev()|
|
||||||
|
|nvim-tree-api.node.open.drop()|
|
||||||
|
|nvim-tree-api.node.open.edit()|
|
||||||
|
|nvim-tree-api.node.open.horizontal()|
|
||||||
|
|nvim-tree-api.node.open.no_window_picker()|
|
||||||
|
|nvim-tree-api.node.open.preview()|
|
||||||
|
|nvim-tree-api.node.open.preview_no_picker()|
|
||||||
|
|nvim-tree-api.node.open.replace_tree_buffer()|
|
||||||
|
|nvim-tree-api.node.open.tab()|
|
||||||
|
|nvim-tree-api.node.open.tab_drop()|
|
||||||
|
|nvim-tree-api.node.open.toggle_group_empty()|
|
||||||
|
|nvim-tree-api.node.open.vertical()|
|
||||||
|
|nvim-tree-api.node.run.cmd()|
|
||||||
|
|nvim-tree-api.node.run.system()|
|
||||||
|
|nvim-tree-api.node.show_info_popup()|
|
||||||
|
|nvim-tree-api.tree.change_root()|
|
||||||
|
|nvim-tree-api.tree.change_root_to_node()|
|
||||||
|
|nvim-tree-api.tree.change_root_to_parent()|
|
||||||
|
|nvim-tree-api.tree.close()|
|
||||||
|
|nvim-tree-api.tree.close_in_all_tabs()|
|
||||||
|
|nvim-tree-api.tree.close_in_this_tab()|
|
||||||
|
|nvim-tree-api.tree.collapse_all()|
|
||||||
|
|nvim-tree-api.tree.expand_all()|
|
||||||
|
|nvim-tree-api.tree.find_file()|
|
||||||
|
|nvim-tree-api.tree.focus()|
|
||||||
|
|nvim-tree-api.tree.get_nodes()|
|
||||||
|
|nvim-tree-api.tree.get_node_under_cursor()|
|
||||||
|
|nvim-tree-api.tree.is_tree_buf()|
|
||||||
|
|nvim-tree-api.tree.is_visible()|
|
||||||
|
|nvim-tree-api.tree.open()|
|
||||||
|
|nvim-tree-api.tree.reload()|
|
||||||
|
|nvim-tree-api.tree.search_node()|
|
||||||
|
|nvim-tree-api.tree.toggle()|
|
||||||
|
|nvim-tree-api.tree.toggle_custom_filter()|
|
||||||
|
|nvim-tree-api.tree.toggle_enable_filters()|
|
||||||
|
|nvim-tree-api.tree.toggle_git_clean_filter()|
|
||||||
|
|nvim-tree-api.tree.toggle_gitignore_filter()|
|
||||||
|
|nvim-tree-api.tree.toggle_help()|
|
||||||
|
|nvim-tree-api.tree.toggle_hidden_filter()|
|
||||||
|
|nvim-tree-api.tree.toggle_no_bookmark_filter()|
|
||||||
|
|nvim-tree-api.tree.toggle_no_buffer_filter()|
|
||||||
|
|nvim-tree-api.tree.winid()|
|
||||||
|
|
||||||
|
==============================================================================
|
||||||
|
|
||||||
vim:tw=78:ts=4:sw=4:et:ft=help:norl:
|
vim:tw=78:ts=4:sw=4:et:ft=help:norl:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
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 colors = require "nvim-tree.colors"
|
local appearance = require "nvim-tree.appearance"
|
||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local view = require "nvim-tree.view"
|
local view = require "nvim-tree.view"
|
||||||
local commands = require "nvim-tree.commands"
|
local commands = require "nvim-tree.commands"
|
||||||
@@ -10,8 +10,7 @@ local legacy = require "nvim-tree.legacy"
|
|||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local git = require "nvim-tree.git"
|
local git = require "nvim-tree.git"
|
||||||
local filters = require "nvim-tree.explorer.filters"
|
local filters = require "nvim-tree.explorer.filters"
|
||||||
local modified = require "nvim-tree.modified"
|
local buffers = require "nvim-tree.buffers"
|
||||||
local events = require "nvim-tree.events"
|
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
|
|
||||||
local _config = {}
|
local _config = {}
|
||||||
@@ -26,8 +25,15 @@ local M = {
|
|||||||
function M.change_root(path, bufnr)
|
function M.change_root(path, bufnr)
|
||||||
-- skip if current file is in ignore_list
|
-- skip if current file is in ignore_list
|
||||||
if type(bufnr) == "number" then
|
if type(bufnr) == "number" then
|
||||||
local ft = vim.api.nvim_buf_get_option(bufnr, "filetype") or ""
|
local ft
|
||||||
for _, value in pairs(_config.update_focused_file.ignore_list) do
|
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
ft = vim.api.nvim_get_option_value("filetype", { buf = bufnr }) or ""
|
||||||
|
else
|
||||||
|
ft = vim.api.nvim_buf_get_option(bufnr, "filetype") or "" ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
|
for _, value in pairs(_config.update_focused_file.update_root.ignore_list) do
|
||||||
if utils.str_find(path, value) or utils.str_find(ft, value) then
|
if utils.str_find(path, value) or utils.str_find(ft, value) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@@ -78,7 +84,14 @@ 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 = vim.api.nvim_buf_get_option(0, "ft")
|
|
||||||
|
local ft
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
ft = vim.api.nvim_get_option_value("filetype", { buf = 0 }) or ""
|
||||||
|
else
|
||||||
|
ft = vim.api.nvim_buf_get_option(0, "ft") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
for _, filter in ipairs(M.config.tab.sync.ignore) do
|
for _, filter in ipairs(M.config.tab.sync.ignore) do
|
||||||
if bufname:match(filter) ~= nil or ft:match(filter) ~= nil then
|
if bufname:match(filter) ~= nil or ft:match(filter) ~= nil then
|
||||||
return
|
return
|
||||||
@@ -104,15 +117,9 @@ function M.open_on_directory()
|
|||||||
actions.root.change_dir.force_dirchange(bufname, true)
|
actions.root.change_dir.force_dirchange(bufname, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.reset_highlight()
|
|
||||||
colors.setup()
|
|
||||||
view.reset_winhl()
|
|
||||||
renderer.render_hl(view.get_bufnr())
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.place_cursor_on_node()
|
function M.place_cursor_on_node()
|
||||||
local search = vim.fn.searchcount()
|
local ok, search = pcall(vim.fn.searchcount)
|
||||||
if search and search.exact_match == 1 then
|
if ok and search and search.exact_match == 1 then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -155,7 +162,7 @@ function M.change_dir(name)
|
|||||||
actions.root.change_dir.fn(name)
|
actions.root.change_dir.fn(name)
|
||||||
end
|
end
|
||||||
|
|
||||||
if _config.update_focused_file.enable then
|
if _config.update_focused_file.update_root.enable then
|
||||||
actions.tree.find_file.fn()
|
actions.tree.find_file.fn()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -168,8 +175,14 @@ local function setup_autocommands(opts)
|
|||||||
vim.api.nvim_create_autocmd(name, vim.tbl_extend("force", default_opts, custom_opts))
|
vim.api.nvim_create_autocmd(name, vim.tbl_extend("force", default_opts, custom_opts))
|
||||||
end
|
end
|
||||||
|
|
||||||
-- reset highlights when colorscheme is changed
|
-- reset and draw (highlights) when colorscheme is changed
|
||||||
create_nvim_tree_autocmd("ColorScheme", { callback = M.reset_highlight })
|
create_nvim_tree_autocmd("ColorScheme", {
|
||||||
|
callback = function()
|
||||||
|
appearance.setup()
|
||||||
|
view.reset_winhl()
|
||||||
|
renderer.draw()
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
-- prevent new opened file from opening in the same window as nvim-tree
|
-- prevent new opened file from opening in the same window as nvim-tree
|
||||||
create_nvim_tree_autocmd("BufWipeout", {
|
create_nvim_tree_autocmd("BufWipeout", {
|
||||||
@@ -210,7 +223,7 @@ local function setup_autocommands(opts)
|
|||||||
-- 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
|
if (filters.config.filter_no_buffer or renderer.config.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(nil, data.buf)
|
actions.reloaders.reload_explorer()
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
@@ -247,7 +260,11 @@ local function setup_autocommands(opts)
|
|||||||
end
|
end
|
||||||
if opts.update_focused_file.enable then
|
if opts.update_focused_file.enable then
|
||||||
create_nvim_tree_autocmd("BufEnter", {
|
create_nvim_tree_autocmd("BufEnter", {
|
||||||
callback = function()
|
callback = function(event)
|
||||||
|
local exclude = opts.update_focused_file.exclude
|
||||||
|
if type(exclude) == "function" and exclude(event) then
|
||||||
|
return
|
||||||
|
end
|
||||||
utils.debounce("BufEnter:find_file", opts.view.debounce_delay, function()
|
utils.debounce("BufEnter:find_file", opts.view.debounce_delay, function()
|
||||||
actions.tree.find_file.fn()
|
actions.tree.find_file.fn()
|
||||||
end)
|
end)
|
||||||
@@ -314,27 +331,12 @@ 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()
|
||||||
modified.reload()
|
buffers.reload_modified()
|
||||||
actions.reloaders.reload_explorer()
|
actions.reloaders.reload_explorer()
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
-- TODO #1545 remove similar check from view.resize
|
|
||||||
if vim.fn.has "nvim-0.9" == 1 then
|
|
||||||
create_nvim_tree_autocmd("WinResized", {
|
|
||||||
callback = function()
|
|
||||||
if vim.v.event and vim.v.event.windows then
|
|
||||||
for _, winid in ipairs(vim.v.event.windows) do
|
|
||||||
if vim.api.nvim_win_is_valid(winid) and utils.is_nvim_tree_buf(vim.api.nvim_win_get_buf(winid)) then
|
|
||||||
events._dispatch_on_tree_resize(vim.api.nvim_win_get_width(winid))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
||||||
@@ -386,8 +388,8 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
|||||||
indent_width = 2,
|
indent_width = 2,
|
||||||
special_files = { "Cargo.toml", "Makefile", "README.md", "readme.md" },
|
special_files = { "Cargo.toml", "Makefile", "README.md", "readme.md" },
|
||||||
symlink_destination = true,
|
symlink_destination = true,
|
||||||
highlight_git = false,
|
highlight_git = "none",
|
||||||
highlight_diagnostics = false,
|
highlight_diagnostics = "none",
|
||||||
highlight_opened_files = "none",
|
highlight_opened_files = "none",
|
||||||
highlight_modified = "none",
|
highlight_modified = "none",
|
||||||
highlight_bookmarks = "none",
|
highlight_bookmarks = "none",
|
||||||
@@ -462,9 +464,12 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
|||||||
},
|
},
|
||||||
update_focused_file = {
|
update_focused_file = {
|
||||||
enable = false,
|
enable = false,
|
||||||
update_root = false,
|
update_root = {
|
||||||
|
enable = false,
|
||||||
ignore_list = {},
|
ignore_list = {},
|
||||||
},
|
},
|
||||||
|
exclude = false,
|
||||||
|
},
|
||||||
system_open = {
|
system_open = {
|
||||||
cmd = "",
|
cmd = "",
|
||||||
args = {},
|
args = {},
|
||||||
@@ -499,6 +504,7 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
|||||||
show_on_open_dirs = true,
|
show_on_open_dirs = true,
|
||||||
},
|
},
|
||||||
filters = {
|
filters = {
|
||||||
|
enable = true,
|
||||||
git_ignored = true,
|
git_ignored = true,
|
||||||
dotfiles = false,
|
dotfiles = false,
|
||||||
git_clean = false,
|
git_clean = false,
|
||||||
@@ -623,6 +629,12 @@ local ACCEPTED_TYPES = {
|
|||||||
group_empty = { "boolean", "function" },
|
group_empty = { "boolean", "function" },
|
||||||
root_folder_label = { "function", "string", "boolean" },
|
root_folder_label = { "function", "string", "boolean" },
|
||||||
},
|
},
|
||||||
|
update_focused_file = {
|
||||||
|
exclude = { "function" },
|
||||||
|
},
|
||||||
|
filters = {
|
||||||
|
custom = { "function" },
|
||||||
|
},
|
||||||
actions = {
|
actions = {
|
||||||
open_file = {
|
open_file = {
|
||||||
window_picker = {
|
window_picker = {
|
||||||
@@ -641,9 +653,11 @@ local ACCEPTED_STRINGS = {
|
|||||||
signcolumn = { "yes", "no", "auto" },
|
signcolumn = { "yes", "no", "auto" },
|
||||||
},
|
},
|
||||||
renderer = {
|
renderer = {
|
||||||
|
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_bookmarks = { "none", "icon", "name", "all" },
|
highlight_bookmarks = { "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" },
|
||||||
@@ -750,8 +764,8 @@ end
|
|||||||
|
|
||||||
---@param conf table|nil
|
---@param conf table|nil
|
||||||
function M.setup(conf)
|
function M.setup(conf)
|
||||||
if vim.fn.has "nvim-0.8" == 0 then
|
if vim.fn.has "nvim-0.9" == 0 then
|
||||||
notify.warn "nvim-tree.lua requires Neovim 0.8 or higher"
|
notify.warn "nvim-tree.lua requires Neovim 0.9 or higher"
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -786,7 +800,7 @@ function M.setup(conf)
|
|||||||
|
|
||||||
require("nvim-tree.actions").setup(opts)
|
require("nvim-tree.actions").setup(opts)
|
||||||
require("nvim-tree.keymap").setup(opts)
|
require("nvim-tree.keymap").setup(opts)
|
||||||
require("nvim-tree.colors").setup()
|
require("nvim-tree.appearance").setup()
|
||||||
require("nvim-tree.diagnostics").setup(opts)
|
require("nvim-tree.diagnostics").setup(opts)
|
||||||
require("nvim-tree.explorer").setup(opts)
|
require("nvim-tree.explorer").setup(opts)
|
||||||
require("nvim-tree.git").setup(opts)
|
require("nvim-tree.git").setup(opts)
|
||||||
@@ -796,7 +810,7 @@ function M.setup(conf)
|
|||||||
require("nvim-tree.renderer").setup(opts)
|
require("nvim-tree.renderer").setup(opts)
|
||||||
require("nvim-tree.live-filter").setup(opts)
|
require("nvim-tree.live-filter").setup(opts)
|
||||||
require("nvim-tree.marks").setup(opts)
|
require("nvim-tree.marks").setup(opts)
|
||||||
require("nvim-tree.modified").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)
|
||||||
if M.config.renderer.icons.show.file and pcall(require, "nvim-web-devicons") then
|
if M.config.renderer.icons.show.file and pcall(require, "nvim-web-devicons") then
|
||||||
|
|||||||
@@ -36,12 +36,13 @@ local function search(search_dir, input_path)
|
|||||||
while name do
|
while name do
|
||||||
path = dir .. "/" .. name
|
path = dir .. "/" .. name
|
||||||
|
|
||||||
|
---@type uv.fs_stat.result|nil
|
||||||
stat, _ = vim.loop.fs_stat(path)
|
stat, _ = vim.loop.fs_stat(path)
|
||||||
if not stat then
|
if not stat then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
if not filters.should_filter(path, filter_status) then
|
if not 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
|
||||||
@@ -68,8 +69,15 @@ function M.fn()
|
|||||||
|
|
||||||
-- temporarily set &path
|
-- temporarily set &path
|
||||||
local bufnr = vim.api.nvim_get_current_buf()
|
local bufnr = vim.api.nvim_get_current_buf()
|
||||||
local path_existed, path_opt = pcall(vim.api.nvim_buf_get_option, bufnr, "path")
|
|
||||||
vim.api.nvim_buf_set_option(bufnr, "path", core.get_cwd() .. "/**")
|
local path_existed, path_opt
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
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 })
|
||||||
|
else
|
||||||
|
path_existed, path_opt = pcall(vim.api.nvim_buf_get_option, bufnr, "path") ---@diagnostic disable-line: deprecated
|
||||||
|
vim.api.nvim_buf_set_option(bufnr, "path", core.get_cwd() .. "/**") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
vim.ui.input({ prompt = "Search: ", completion = "file_in_path" }, function(input_path)
|
vim.ui.input({ prompt = "Search: ", completion = "file_in_path" }, function(input_path)
|
||||||
if not input_path or input_path == "" then
|
if not input_path or input_path == "" then
|
||||||
@@ -77,9 +85,17 @@ function M.fn()
|
|||||||
end
|
end
|
||||||
-- reset &path
|
-- reset &path
|
||||||
if path_existed then
|
if path_existed then
|
||||||
vim.api.nvim_buf_set_option(bufnr, "path", path_opt)
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value("path", path_opt, { buf = bufnr })
|
||||||
else
|
else
|
||||||
vim.api.nvim_buf_set_option(bufnr, "path", nil)
|
vim.api.nvim_buf_set_option(bufnr, "path", path_opt) ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
else
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value("path", nil, { buf = bufnr })
|
||||||
|
else
|
||||||
|
vim.api.nvim_buf_set_option(bufnr, "path", nil) ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- strip trailing slash
|
-- strip trailing slash
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ local notify = require "nvim-tree.notify"
|
|||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local reloaders = require "nvim-tree.actions.reloaders"
|
local reloaders = require "nvim-tree.actions.reloaders"
|
||||||
|
|
||||||
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
|
||||||
|
|
||||||
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 = {
|
||||||
@@ -278,17 +276,24 @@ end
|
|||||||
---@param content string
|
---@param content string
|
||||||
local function copy_to_clipboard(content)
|
local function copy_to_clipboard(content)
|
||||||
local clipboard_name
|
local clipboard_name
|
||||||
|
local reg
|
||||||
if M.config.actions.use_system_clipboard == true then
|
if M.config.actions.use_system_clipboard == true then
|
||||||
vim.fn.setreg("+", content)
|
|
||||||
vim.fn.setreg('"', content)
|
|
||||||
clipboard_name = "system"
|
clipboard_name = "system"
|
||||||
|
reg = "+"
|
||||||
else
|
else
|
||||||
vim.fn.setreg('"', content)
|
|
||||||
vim.fn.setreg("1", content)
|
|
||||||
clipboard_name = "neovim"
|
clipboard_name = "neovim"
|
||||||
|
reg = "1"
|
||||||
end
|
end
|
||||||
|
|
||||||
vim.api.nvim_exec_autocmds("TextYankPost", {})
|
-- manually firing TextYankPost does not set vim.v.event
|
||||||
|
-- workaround: create a scratch buffer with the clipboard contents and send a yank command
|
||||||
|
local temp_buf = vim.api.nvim_create_buf(false, true)
|
||||||
|
vim.api.nvim_buf_set_text(temp_buf, 0, 0, 0, 0, { content })
|
||||||
|
vim.api.nvim_buf_call(temp_buf, function()
|
||||||
|
vim.cmd(string.format('normal! "%sy$', reg))
|
||||||
|
end)
|
||||||
|
vim.api.nvim_buf_delete(temp_buf, {})
|
||||||
|
|
||||||
notify.info(string.format("Copied %s to %s clipboard!", content, clipboard_name))
|
notify.info(string.format("Copied %s to %s clipboard!", content, clipboard_name))
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -297,6 +302,12 @@ function M.copy_filename(node)
|
|||||||
copy_to_clipboard(node.name)
|
copy_to_clipboard(node.name)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@param node Node
|
||||||
|
function M.copy_basename(node)
|
||||||
|
local basename = vim.fn.fnamemodify(node.name, ":r")
|
||||||
|
copy_to_clipboard(basename)
|
||||||
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.copy_path(node)
|
function M.copy_path(node)
|
||||||
local absolute_path = node.absolute_path
|
local absolute_path = node.absolute_path
|
||||||
@@ -317,34 +328,23 @@ function M.copy_absolute_path(node)
|
|||||||
copy_to_clipboard(content)
|
copy_to_clipboard(content)
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Clipboard text highlight group and position when highlight_clipboard.
|
---Node is cut. Will not be copied.
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@return HL_POSITION position none when clipboard empty
|
---@return boolean
|
||||||
---@return string|nil group only when node present in clipboard
|
function M.is_cut(node)
|
||||||
function M.get_highlight(node)
|
return vim.tbl_contains(clipboard.cut, node)
|
||||||
if M.hl_pos == HL_POSITION.none then
|
end
|
||||||
return HL_POSITION.none, nil
|
|
||||||
end
|
|
||||||
|
|
||||||
for _, n in ipairs(clipboard.cut) do
|
---Node is copied. Will not be cut.
|
||||||
if node == n then
|
---@param node Node
|
||||||
return M.hl_pos, "NvimTreeCutHL"
|
---@return boolean
|
||||||
end
|
function M.is_copied(node)
|
||||||
end
|
return vim.tbl_contains(clipboard.copy, node)
|
||||||
|
|
||||||
for _, n in ipairs(clipboard.copy) do
|
|
||||||
if node == n then
|
|
||||||
return M.hl_pos, "NvimTreeCopiedHL"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return HL_POSITION.none, nil
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.config.filesystem_watchers = opts.filesystem_watchers
|
M.config.filesystem_watchers = opts.filesystem_watchers
|
||||||
M.config.actions = opts.actions
|
M.config.actions = opts.actions
|
||||||
M.hl_pos = HL_POSITION[opts.renderer.highlight_clipboard] or HL_POSITION.none
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ local M = {}
|
|||||||
local function create_and_notify(file)
|
local function create_and_notify(file)
|
||||||
events._dispatch_will_create_file(file)
|
events._dispatch_will_create_file(file)
|
||||||
local ok, fd = pcall(vim.loop.fs_open, file, "w", 420)
|
local ok, fd = pcall(vim.loop.fs_open, file, "w", 420)
|
||||||
if not ok then
|
if not ok or type(fd) ~= "number" then
|
||||||
notify.error("Couldn't create file " .. notify.render_path(file))
|
notify.error("Couldn't create file " .. notify.render_path(file))
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -49,9 +49,9 @@ end
|
|||||||
---@param cwd string
|
---@param cwd string
|
||||||
---@return boolean|nil
|
---@return boolean|nil
|
||||||
local function remove_dir(cwd)
|
local function remove_dir(cwd)
|
||||||
local handle = vim.loop.fs_scandir(cwd)
|
local handle, err = vim.loop.fs_scandir(cwd)
|
||||||
if type(handle) == "string" then
|
if not handle then
|
||||||
notify.error(handle)
|
notify.error(err)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,16 @@ local M = {
|
|||||||
config = {},
|
config = {},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
---@param iter function iterable
|
||||||
|
---@return integer
|
||||||
|
local function get_num_nodes(iter)
|
||||||
|
local i = 0
|
||||||
|
for _ in iter do
|
||||||
|
i = i + 1
|
||||||
|
end
|
||||||
|
return i
|
||||||
|
end
|
||||||
|
|
||||||
local ALLOWED_MODIFIERS = {
|
local ALLOWED_MODIFIERS = {
|
||||||
[":p"] = true,
|
[":p"] = true,
|
||||||
[":p:h"] = true,
|
[":p:h"] = true,
|
||||||
@@ -31,15 +41,46 @@ function M.rename(node, to)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- create a folder for each path element if the folder does not exist
|
||||||
|
local idx = 0
|
||||||
|
local path_to_create = ""
|
||||||
|
|
||||||
|
local num_nodes = get_num_nodes(utils.path_split(utils.path_remove_trailing(to)))
|
||||||
|
local is_error = false
|
||||||
|
for path in utils.path_split(to) do
|
||||||
|
idx = idx + 1
|
||||||
|
|
||||||
|
local p = utils.path_remove_trailing(path)
|
||||||
|
if #path_to_create == 0 and vim.fn.has "win32" == 1 then
|
||||||
|
path_to_create = utils.path_join { p, path_to_create }
|
||||||
|
else
|
||||||
|
path_to_create = utils.path_join { path_to_create, p }
|
||||||
|
end
|
||||||
|
|
||||||
|
if idx == num_nodes then
|
||||||
events._dispatch_will_rename_node(node.absolute_path, to)
|
events._dispatch_will_rename_node(node.absolute_path, to)
|
||||||
local success, err = vim.loop.fs_rename(node.absolute_path, to)
|
local success, err = vim.loop.fs_rename(node.absolute_path, to)
|
||||||
|
|
||||||
if not success then
|
if not success then
|
||||||
notify.warn(err_fmt(notify_from, notify_to, err))
|
notify.warn(err_fmt(notify_from, notify_to, err))
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
elseif not utils.file_exists(path_to_create) then
|
||||||
|
local success = vim.loop.fs_mkdir(path_to_create, 493)
|
||||||
|
if not success then
|
||||||
|
notify.error("Could not create folder " .. notify.render_path(path_to_create))
|
||||||
|
is_error = true
|
||||||
|
break
|
||||||
|
end
|
||||||
|
is_error = false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if not is_error then
|
||||||
notify.info(string.format("%s -> %s", notify_from, notify_to))
|
notify.info(string.format("%s -> %s", notify_from, notify_to))
|
||||||
utils.rename_loaded_buffers(node.absolute_path, to)
|
utils.rename_loaded_buffers(node.absolute_path, to)
|
||||||
events._dispatch_node_renamed(node.absolute_path, to)
|
events._dispatch_node_renamed(node.absolute_path, to)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param default_modifier string|nil
|
---@param default_modifier string|nil
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ function M.remove(node)
|
|||||||
-- trashes a path (file or folder)
|
-- trashes a path (file or folder)
|
||||||
local function trash_path(on_exit)
|
local function trash_path(on_exit)
|
||||||
local need_sync_wait = utils.is_windows
|
local need_sync_wait = utils.is_windows
|
||||||
local job = vim.fn.jobstart(M.config.trash.cmd .. ' "' .. node.absolute_path .. '"', {
|
local job = vim.fn.jobstart(M.config.trash.cmd .. " " .. vim.fn.shellescape(node.absolute_path), {
|
||||||
detach = not need_sync_wait,
|
detach = not need_sync_wait,
|
||||||
on_exit = on_exit,
|
on_exit = on_exit,
|
||||||
on_stderr = on_stderr,
|
on_stderr = on_stderr,
|
||||||
|
|||||||
@@ -6,39 +6,47 @@ 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
|
||||||
|
|
||||||
---@class NavigationItemOpts
|
---Return the status of the node or nil if no status, depending on the type of
|
||||||
---@field where string
|
---status.
|
||||||
---@field what string
|
---@param node table node to inspect
|
||||||
|
---@param what string type of status
|
||||||
|
---@param skip_gitignored boolean default false
|
||||||
|
---@return boolean
|
||||||
|
local function status_is_valid(node, what, skip_gitignored)
|
||||||
|
if what == "git" then
|
||||||
|
local git_status = explorer_node.get_git_status(node)
|
||||||
|
return git_status ~= nil and (not skip_gitignored or git_status[1] ~= "!!")
|
||||||
|
elseif what == "diag" then
|
||||||
|
local diag_status = diagnostics.get_diag_status(node)
|
||||||
|
return diag_status ~= nil and diag_status.value ~= nil
|
||||||
|
elseif what == "opened" then
|
||||||
|
return vim.fn.bufloaded(node.absolute_path) ~= 0
|
||||||
|
end
|
||||||
|
|
||||||
---@param opts NavigationItemOpts
|
return false
|
||||||
---@return fun()
|
end
|
||||||
function M.fn(opts)
|
|
||||||
return function()
|
---Move to the next node that has a valid status. If none found, don't move.
|
||||||
|
---@param where string where to move (forwards or backwards)
|
||||||
|
---@param what string type of status
|
||||||
|
---@param skip_gitignored boolean default false
|
||||||
|
local function move(where, what, skip_gitignored)
|
||||||
local node_cur = lib.get_node_at_cursor()
|
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
|
||||||
|
|
||||||
if opts.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 opts.where == "prev" then
|
elseif where == "prev" then
|
||||||
iter_start, iter_end, iter_step = #nodes_by_line, first_node_line, -1
|
iter_start, iter_end, iter_step = #nodes_by_line, first_node_line, -1
|
||||||
end
|
end
|
||||||
|
|
||||||
for line = iter_start, iter_end, iter_step do
|
for line = iter_start, iter_end, iter_step do
|
||||||
local node = nodes_by_line[line]
|
local node = nodes_by_line[line]
|
||||||
local valid = false
|
local valid = status_is_valid(node, what, skip_gitignored)
|
||||||
|
|
||||||
if opts.what == "git" then
|
|
||||||
local git_status = explorer_node.get_git_status(node)
|
|
||||||
valid = git_status ~= nil and (not opts.skip_gitignored or git_status[1] ~= "!!")
|
|
||||||
elseif opts.what == "diag" then
|
|
||||||
local diag_status = diagnostics.get_diag_status(node)
|
|
||||||
valid = diag_status ~= nil and diag_status.value ~= nil
|
|
||||||
elseif opts.what == "opened" then
|
|
||||||
valid = vim.fn.bufloaded(node.absolute_path) ~= 0
|
|
||||||
end
|
|
||||||
|
|
||||||
if not first and valid then
|
if not first and valid then
|
||||||
first = line
|
first = line
|
||||||
@@ -57,6 +65,173 @@ function M.fn(opts)
|
|||||||
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
|
||||||
|
|
||||||
|
local function expand_node(node)
|
||||||
|
if not node.open then
|
||||||
|
-- Expand the node.
|
||||||
|
-- Should never collapse since we checked open.
|
||||||
|
lib.expand_or_collapse(node)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
--- Move to the next node recursively.
|
||||||
|
---@param what string type of status
|
||||||
|
---@param skip_gitignored boolean default false
|
||||||
|
local function move_next_recursive(what, skip_gitignored)
|
||||||
|
-- If the current node:
|
||||||
|
-- * is a directory
|
||||||
|
-- * and is not the root node
|
||||||
|
-- * and has a git/diag status
|
||||||
|
-- * and is not opened
|
||||||
|
-- expand it.
|
||||||
|
local node_init = lib.get_node_at_cursor()
|
||||||
|
if not node_init then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local valid = false
|
||||||
|
if node_init.name ~= ".." then -- root node cannot have a status
|
||||||
|
valid = status_is_valid(node_init, what, skip_gitignored)
|
||||||
|
end
|
||||||
|
if node_init.nodes ~= nil and valid and not node_init.open then
|
||||||
|
lib.expand_or_collapse(node_init)
|
||||||
|
end
|
||||||
|
|
||||||
|
move("next", what, skip_gitignored)
|
||||||
|
|
||||||
|
local node_cur = lib.get_node_at_cursor()
|
||||||
|
if not node_cur then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
-- If we haven't moved at all at this point, return.
|
||||||
|
if node_init == node_cur then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
-- i is used to limit iterations.
|
||||||
|
local i = 0
|
||||||
|
local is_dir = node_cur.nodes ~= nil
|
||||||
|
while is_dir and i < MAX_DEPTH do
|
||||||
|
expand_node(node_cur)
|
||||||
|
|
||||||
|
move("next", what, skip_gitignored)
|
||||||
|
|
||||||
|
-- Save current node.
|
||||||
|
node_cur = lib.get_node_at_cursor()
|
||||||
|
-- Update is_dir.
|
||||||
|
if node_cur then
|
||||||
|
is_dir = node_cur.nodes ~= nil
|
||||||
|
else
|
||||||
|
is_dir = false
|
||||||
|
end
|
||||||
|
|
||||||
|
i = i + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
--- Move to the previous node recursively.
|
||||||
|
---
|
||||||
|
--- move_prev_recursive:
|
||||||
|
---
|
||||||
|
--- 1) Save current as node_init.
|
||||||
|
-- 2) Call a non-recursive prev.
|
||||||
|
--- 3) If current node is node_init's parent, call move_prev_recursive.
|
||||||
|
--- 4) Else:
|
||||||
|
--- 4.1) If current node is nil, is node_init (we didn't move), or is a file, return.
|
||||||
|
--- 4.2) The current file is a directory, expand it.
|
||||||
|
--- 4.3) Find node_init in current window, and move to it (if not found, return).
|
||||||
|
--- If node_init is the root node (name = ".."), directly move to position 1.
|
||||||
|
--- 4.4) Call a non-recursive prev.
|
||||||
|
--- 4.5) Save the current node and start back from 4.1.
|
||||||
|
---
|
||||||
|
---@param what string type of status
|
||||||
|
---@param skip_gitignored boolean default false
|
||||||
|
local function move_prev_recursive(what, skip_gitignored)
|
||||||
|
local node_init, node_cur
|
||||||
|
|
||||||
|
-- 1)
|
||||||
|
node_init = lib.get_node_at_cursor()
|
||||||
|
if node_init == nil then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
-- 2)
|
||||||
|
move("prev", what, skip_gitignored)
|
||||||
|
|
||||||
|
node_cur = lib.get_node_at_cursor()
|
||||||
|
if node_cur == node_init.parent then
|
||||||
|
-- 3)
|
||||||
|
move_prev_recursive(what, skip_gitignored)
|
||||||
|
else
|
||||||
|
-- i is used to limit iterations.
|
||||||
|
local i = 0
|
||||||
|
while i < MAX_DEPTH do
|
||||||
|
-- 4.1)
|
||||||
|
if
|
||||||
|
node_cur == nil
|
||||||
|
or node_cur == node_init -- we didn't move
|
||||||
|
or not node_cur.nodes -- node is a file
|
||||||
|
then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
-- 4.2)
|
||||||
|
local node_dir = node_cur
|
||||||
|
expand_node(node_dir)
|
||||||
|
|
||||||
|
-- 4.3)
|
||||||
|
if node_init.name == ".." then -- root node
|
||||||
|
view.set_cursor { 1, 0 } -- move to root node (position 1)
|
||||||
|
else
|
||||||
|
local node_init_line = utils.find_node_line(node_init)
|
||||||
|
if node_init_line < 0 then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
view.set_cursor { node_init_line, 0 }
|
||||||
|
end
|
||||||
|
|
||||||
|
-- 4.4)
|
||||||
|
move("prev", what, skip_gitignored)
|
||||||
|
|
||||||
|
-- 4.5)
|
||||||
|
node_cur = lib.get_node_at_cursor()
|
||||||
|
|
||||||
|
i = i + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---@class NavigationItemOpts
|
||||||
|
---@field where string
|
||||||
|
---@field what string
|
||||||
|
|
||||||
|
---@param opts NavigationItemOpts
|
||||||
|
---@return fun()
|
||||||
|
function M.fn(opts)
|
||||||
|
return function()
|
||||||
|
local recurse = false
|
||||||
|
local skip_gitignored = false
|
||||||
|
|
||||||
|
-- recurse only valid for git and diag moves.
|
||||||
|
if (opts.what == "git" or opts.what == "diag") and opts.recurse ~= nil then
|
||||||
|
recurse = opts.recurse
|
||||||
|
end
|
||||||
|
|
||||||
|
if opts.skip_gitignored ~= nil then
|
||||||
|
skip_gitignored = opts.skip_gitignored
|
||||||
|
end
|
||||||
|
|
||||||
|
if not recurse then
|
||||||
|
move(opts.where, opts.what, skip_gitignored)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if opts.where == "next" then
|
||||||
|
move_next_recursive(opts.what, skip_gitignored)
|
||||||
|
elseif opts.where == "prev" then
|
||||||
|
move_prev_recursive(opts.what, skip_gitignored)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,14 @@ local M = {}
|
|||||||
---@return table
|
---@return table
|
||||||
local function get_formatted_lines(node)
|
local function get_formatted_lines(node)
|
||||||
local stats = node.fs_stat
|
local stats = node.fs_stat
|
||||||
|
if stats == nil then
|
||||||
|
return {
|
||||||
|
"",
|
||||||
|
" Can't retrieve file information",
|
||||||
|
"",
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
local fpath = " fullpath: " .. node.absolute_path
|
local fpath = " fullpath: " .. node.absolute_path
|
||||||
local created_at = " created: " .. os.date("%x %X", stats.birthtime.sec)
|
local created_at = " created: " .. os.date("%x %X", stats.birthtime.sec)
|
||||||
local modified_at = " modified: " .. os.date("%x %X", stats.mtime.sec)
|
local modified_at = " modified: " .. os.date("%x %X", stats.mtime.sec)
|
||||||
@@ -48,7 +56,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, { force = 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
|
||||||
|
|||||||
@@ -26,14 +26,20 @@ local function usable_win_ids()
|
|||||||
return vim.tbl_filter(function(id)
|
return vim.tbl_filter(function(id)
|
||||||
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 = pcall(vim.api.nvim_buf_get_option, bufid, option)
|
local ok, option_value
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
ok, option_value = pcall(vim.api.nvim_get_option_value, option, { buf = bufid })
|
||||||
|
else
|
||||||
|
ok, option_value = pcall(vim.api.nvim_buf_get_option, bufid, option) ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
if ok and vim.tbl_contains(v, option_value) then
|
if ok and vim.tbl_contains(v, option_value) then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local win_config = vim.api.nvim_win_get_config(id)
|
local win_config = vim.api.nvim_win_get_config(id)
|
||||||
return id ~= tree_winid and win_config.focusable and not win_config.external
|
return id ~= tree_winid and win_config.focusable and not win_config.external or false
|
||||||
end, win_ids)
|
end, win_ids)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -83,8 +89,15 @@ local function pick_win_id()
|
|||||||
|
|
||||||
if laststatus == 3 then
|
if laststatus == 3 then
|
||||||
for _, win_id in ipairs(not_selectable) do
|
for _, win_id in ipairs(not_selectable) do
|
||||||
local ok_status, statusline = pcall(vim.api.nvim_win_get_option, win_id, "statusline")
|
local ok_status, statusline, ok_hl, winhl
|
||||||
local ok_hl, winhl = pcall(vim.api.nvim_win_get_option, win_id, "winhl")
|
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
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 })
|
||||||
|
else
|
||||||
|
ok_status, statusline = pcall(vim.api.nvim_win_get_option, win_id, "statusline") ---@diagnostic disable-line: deprecated
|
||||||
|
ok_hl, winhl = pcall(vim.api.nvim_win_get_option, win_id, "winhl") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
win_opts[win_id] = {
|
win_opts[win_id] = {
|
||||||
statusline = ok_status and statusline or "",
|
statusline = ok_status and statusline or "",
|
||||||
@@ -92,15 +105,26 @@ local function pick_win_id()
|
|||||||
}
|
}
|
||||||
|
|
||||||
-- Clear statusline for windows not selectable
|
-- Clear statusline for windows not selectable
|
||||||
vim.api.nvim_win_set_option(win_id, "statusline", " ")
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value("statusline", " ", { win = win_id })
|
||||||
|
else
|
||||||
|
vim.api.nvim_win_set_option(win_id, "statusline", " ") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Setup UI
|
-- Setup UI
|
||||||
for _, id in ipairs(selectable) do
|
for _, id in ipairs(selectable) do
|
||||||
local char = M.window_picker.chars:sub(i, i)
|
local char = M.window_picker.chars:sub(i, i)
|
||||||
local ok_status, statusline = pcall(vim.api.nvim_win_get_option, id, "statusline")
|
|
||||||
local ok_hl, winhl = pcall(vim.api.nvim_win_get_option, id, "winhl")
|
local ok_status, statusline, ok_hl, winhl
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
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 })
|
||||||
|
else
|
||||||
|
ok_status, statusline = pcall(vim.api.nvim_win_get_option, id, "statusline") ---@diagnostic disable-line: deprecated
|
||||||
|
ok_hl, winhl = pcall(vim.api.nvim_win_get_option, id, "winhl") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
win_opts[id] = {
|
win_opts[id] = {
|
||||||
statusline = ok_status and statusline or "",
|
statusline = ok_status and statusline or "",
|
||||||
@@ -108,8 +132,13 @@ local function pick_win_id()
|
|||||||
}
|
}
|
||||||
win_map[char] = id
|
win_map[char] = id
|
||||||
|
|
||||||
vim.api.nvim_win_set_option(id, "statusline", "%=" .. char .. "%=")
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
vim.api.nvim_win_set_option(id, "winhl", "StatusLine:NvimTreeWindowPicker,StatusLineNC:NvimTreeWindowPicker")
|
vim.api.nvim_set_option_value("statusline", "%=" .. char .. "%=", { win = id })
|
||||||
|
vim.api.nvim_set_option_value("winhl", "StatusLine:NvimTreeWindowPicker,StatusLineNC:NvimTreeWindowPicker", { win = id })
|
||||||
|
else
|
||||||
|
vim.api.nvim_win_set_option(id, "statusline", "%=" .. char .. "%=") ---@diagnostic disable-line: deprecated
|
||||||
|
vim.api.nvim_win_set_option(id, "winhl", "StatusLine:NvimTreeWindowPicker,StatusLineNC:NvimTreeWindowPicker") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
i = i + 1
|
i = i + 1
|
||||||
if i > #M.window_picker.chars then
|
if i > #M.window_picker.chars then
|
||||||
@@ -128,14 +157,22 @@ 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
|
||||||
vim.api.nvim_win_set_option(id, opt, value)
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value(opt, value, { win = id })
|
||||||
|
else
|
||||||
|
vim.api.nvim_win_set_option(id, opt, value) ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if laststatus == 3 then
|
if laststatus == 3 then
|
||||||
for _, id in ipairs(not_selectable) do
|
for _, id in ipairs(not_selectable) do
|
||||||
for opt, value in pairs(win_opts[id]) do
|
for opt, value in pairs(win_opts[id]) do
|
||||||
vim.api.nvim_win_set_option(id, opt, value)
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value(opt, value, { win = id })
|
||||||
|
else
|
||||||
|
vim.api.nvim_win_set_option(id, opt, value) ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -258,23 +295,31 @@ local function open_in_new_window(filename, mode)
|
|||||||
-- If `hidden` is not enabled, check if buffer in target window is
|
-- If `hidden` is not enabled, check if buffer in target window is
|
||||||
-- modified, and create new split if it is.
|
-- modified, and create new split if it is.
|
||||||
local target_bufid = vim.api.nvim_win_get_buf(target_winid)
|
local target_bufid = vim.api.nvim_win_get_buf(target_winid)
|
||||||
if vim.api.nvim_buf_get_option(target_bufid, "modified") then
|
|
||||||
|
local modified
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
modified = vim.api.nvim_get_option_value("modified", { buf = target_bufid })
|
||||||
|
else
|
||||||
|
modified = vim.api.nvim_buf_get_option(target_bufid, "modified") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
|
if modified then
|
||||||
if not mode:match "split$" then
|
if not mode:match "split$" then
|
||||||
mode = "vsplit"
|
mode = "vsplit"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local fname = vim.fn.fnameescape(filename)
|
local fname = utils.escape_special_chars(vim.fn.fnameescape(filename))
|
||||||
fname = utils.escape_special_chars(fname)
|
|
||||||
|
|
||||||
local cmd
|
local command
|
||||||
if create_new_window then
|
if create_new_window then
|
||||||
cmd = string.format("%s vsplit %s", new_window_side, fname)
|
-- generated from vim.api.nvim_parse_cmd("belowright vsplit foo", {})
|
||||||
|
command = { cmd = "vsplit", mods = { split = new_window_side }, args = { fname } }
|
||||||
elseif mode:match "split$" then
|
elseif mode:match "split$" then
|
||||||
cmd = string.format("%s %s", mode, fname)
|
command = { cmd = mode, args = { fname } }
|
||||||
else
|
else
|
||||||
cmd = string.format("edit %s", fname)
|
command = { cmd = "edit", args = { fname } }
|
||||||
end
|
end
|
||||||
|
|
||||||
if (mode == "preview" or mode == "preview_no_picker") and view.View.float.enable then
|
if (mode == "preview" or mode == "preview_no_picker") and view.View.float.enable then
|
||||||
@@ -286,7 +331,7 @@ local function open_in_new_window(filename, mode)
|
|||||||
set_current_win_no_autocmd(target_winid, { "BufEnter" })
|
set_current_win_no_autocmd(target_winid, { "BufEnter" })
|
||||||
end
|
end
|
||||||
|
|
||||||
pcall(vim.cmd, cmd)
|
pcall(vim.api.nvim_cmd, command, { output = false })
|
||||||
lib.set_target_win()
|
lib.set_target_win()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -10,13 +10,12 @@ local M = {}
|
|||||||
|
|
||||||
---@param node Explorer|nil
|
---@param node Explorer|nil
|
||||||
---@param projects table
|
---@param projects table
|
||||||
---@param unloaded_bufnr number|nil
|
local function refresh_nodes(node, projects)
|
||||||
local function refresh_nodes(node, projects, unloaded_bufnr)
|
|
||||||
Iterator.builder({ node })
|
Iterator.builder({ node })
|
||||||
:applier(function(n)
|
:applier(function(n)
|
||||||
if n.nodes then
|
if n.nodes then
|
||||||
local toplevel = git.get_toplevel(n.cwd or n.link_to or n.absolute_path)
|
local toplevel = git.get_toplevel(n.cwd or n.link_to or n.absolute_path)
|
||||||
explorer_module.reload(n, projects[toplevel] or {}, unloaded_bufnr)
|
explorer_module.reload(n, projects[toplevel] or {})
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
:recursor(function(n)
|
:recursor(function(n)
|
||||||
@@ -43,18 +42,16 @@ function M.reload_node_status(parent_node, projects)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local event_running = false
|
local event_running = false
|
||||||
---@param _ table|nil unused node passed by action
|
function M.reload_explorer()
|
||||||
---@param unloaded_bufnr number|nil optional bufnr recently unloaded via BufUnload event
|
|
||||||
function M.reload_explorer(_, unloaded_bufnr)
|
|
||||||
if event_running or not core.get_explorer() or vim.v.exiting ~= vim.NIL then
|
if event_running or not core.get_explorer() or vim.v.exiting ~= vim.NIL then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
event_running = true
|
event_running = true
|
||||||
|
|
||||||
local projects = git.reload()
|
local projects = git.reload()
|
||||||
refresh_nodes(core.get_explorer(), projects, unloaded_bufnr)
|
refresh_nodes(core.get_explorer(), projects)
|
||||||
if view.is_visible() then
|
if view.is_visible() then
|
||||||
renderer.draw(unloaded_bufnr)
|
renderer.draw()
|
||||||
end
|
end
|
||||||
event_running = false
|
event_running = false
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -24,18 +24,19 @@ function M.fn(opts)
|
|||||||
local bufnr, path
|
local bufnr, path
|
||||||
|
|
||||||
-- (optional) buffer number and path
|
-- (optional) buffer number and path
|
||||||
if type(opts.buf) == "nil" then
|
local opts_buf = opts.buf
|
||||||
|
if type(opts_buf) == "nil" then
|
||||||
bufnr = vim.api.nvim_get_current_buf()
|
bufnr = vim.api.nvim_get_current_buf()
|
||||||
path = vim.api.nvim_buf_get_name(bufnr)
|
path = vim.api.nvim_buf_get_name(bufnr)
|
||||||
elseif type(opts.buf) == "number" then
|
elseif type(opts_buf) == "number" then
|
||||||
if not vim.api.nvim_buf_is_valid(opts.buf) then
|
if not vim.api.nvim_buf_is_valid(opts_buf) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
bufnr = tonumber(opts.buf)
|
bufnr = opts_buf
|
||||||
path = vim.api.nvim_buf_get_name(bufnr)
|
path = vim.api.nvim_buf_get_name(bufnr)
|
||||||
elseif type(opts.buf) == "string" then
|
elseif type(opts_buf) == "string" then
|
||||||
bufnr = nil
|
bufnr = nil
|
||||||
path = tostring(opts.buf)
|
path = tostring(opts_buf)
|
||||||
else
|
else
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@@ -55,7 +56,7 @@ function M.fn(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- update root
|
-- update root
|
||||||
if opts.update_root or M.config.update_focused_file.update_root then
|
if opts.update_root or M.config.update_focused_file.update_root.enable then
|
||||||
require("nvim-tree").change_root(path, bufnr)
|
require("nvim-tree").change_root(path, bufnr)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -41,4 +41,9 @@ function M.dotfiles()
|
|||||||
reload()
|
reload()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function M.enable()
|
||||||
|
filters.config.enable = not filters.config.enable
|
||||||
|
reload()
|
||||||
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ local lib = require "nvim-tree.lib"
|
|||||||
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 actions = require "nvim-tree.actions"
|
local actions = require "nvim-tree.actions"
|
||||||
|
local appearance_diagnostics = require "nvim-tree.appearance.diagnostics"
|
||||||
local events = require "nvim-tree.events"
|
local events = require "nvim-tree.events"
|
||||||
local help = require "nvim-tree.help"
|
local help = require "nvim-tree.help"
|
||||||
local live_filter = require "nvim-tree.live-filter"
|
local live_filter = require "nvim-tree.live-filter"
|
||||||
@@ -39,6 +40,7 @@ local Api = {
|
|||||||
mappings = {},
|
mappings = {},
|
||||||
},
|
},
|
||||||
commands = {},
|
commands = {},
|
||||||
|
diagnostics = {},
|
||||||
}
|
}
|
||||||
|
|
||||||
--- Do nothing when setup not called.
|
--- Do nothing when setup not called.
|
||||||
@@ -126,6 +128,7 @@ Api.tree.find_file = wrap(actions.tree.find_file.fn)
|
|||||||
Api.tree.search_node = wrap(actions.finders.search_node.fn)
|
Api.tree.search_node = wrap(actions.finders.search_node.fn)
|
||||||
Api.tree.collapse_all = wrap(actions.tree.modifiers.collapse_all.fn)
|
Api.tree.collapse_all = wrap(actions.tree.modifiers.collapse_all.fn)
|
||||||
Api.tree.expand_all = wrap_node(actions.tree.modifiers.expand_all.fn)
|
Api.tree.expand_all = wrap_node(actions.tree.modifiers.expand_all.fn)
|
||||||
|
Api.tree.toggle_enable_filters = wrap(actions.tree.modifiers.toggles.enable)
|
||||||
Api.tree.toggle_gitignore_filter = wrap(actions.tree.modifiers.toggles.git_ignored)
|
Api.tree.toggle_gitignore_filter = wrap(actions.tree.modifiers.toggles.git_ignored)
|
||||||
Api.tree.toggle_git_clean_filter = wrap(actions.tree.modifiers.toggles.git_clean)
|
Api.tree.toggle_git_clean_filter = wrap(actions.tree.modifiers.toggles.git_clean)
|
||||||
Api.tree.toggle_no_buffer_filter = wrap(actions.tree.modifiers.toggles.no_buffer)
|
Api.tree.toggle_no_buffer_filter = wrap(actions.tree.modifiers.toggles.no_buffer)
|
||||||
@@ -161,6 +164,7 @@ Api.fs.print_clipboard = wrap(actions.fs.copy_paste.print_clipboard)
|
|||||||
Api.fs.copy.node = wrap_node(actions.fs.copy_paste.copy)
|
Api.fs.copy.node = wrap_node(actions.fs.copy_paste.copy)
|
||||||
Api.fs.copy.absolute_path = wrap_node(actions.fs.copy_paste.copy_absolute_path)
|
Api.fs.copy.absolute_path = wrap_node(actions.fs.copy_paste.copy_absolute_path)
|
||||||
Api.fs.copy.filename = wrap_node(actions.fs.copy_paste.copy_filename)
|
Api.fs.copy.filename = wrap_node(actions.fs.copy_paste.copy_filename)
|
||||||
|
Api.fs.copy.basename = wrap_node(actions.fs.copy_paste.copy_basename)
|
||||||
Api.fs.copy.relative_path = wrap_node(actions.fs.copy_paste.copy_path)
|
Api.fs.copy.relative_path = wrap_node(actions.fs.copy_paste.copy_path)
|
||||||
|
|
||||||
---@param mode string
|
---@param mode string
|
||||||
@@ -175,13 +179,13 @@ end
|
|||||||
|
|
||||||
---@param mode string
|
---@param mode string
|
||||||
---@return fun(node: table)
|
---@return fun(node: table)
|
||||||
local function open_or_expand_or_dir_up(mode)
|
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)
|
lib.expand_or_collapse(node, toggle_group)
|
||||||
else
|
elseif not toggle_group then
|
||||||
edit(mode, node)
|
edit(mode, node)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -195,6 +199,7 @@ Api.node.open.no_window_picker = wrap_node(open_or_expand_or_dir_up "edit_no_pic
|
|||||||
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.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")
|
||||||
|
|
||||||
@@ -210,10 +215,14 @@ 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.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.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.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.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" })
|
||||||
|
|
||||||
@@ -240,6 +249,8 @@ 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)
|
||||||
Api.config.mappings.default_on_attach = keymap.default_on_attach
|
Api.config.mappings.default_on_attach = keymap.default_on_attach
|
||||||
|
|
||||||
|
Api.diagnostics.hi_test = wrap(appearance_diagnostics.hi_test)
|
||||||
|
|
||||||
Api.commands.get = wrap(function()
|
Api.commands.get = wrap(function()
|
||||||
return require("nvim-tree.commands").get()
|
return require("nvim-tree.commands").get()
|
||||||
end)
|
end)
|
||||||
|
|||||||
141
lua/nvim-tree/appearance/diagnostics.lua
Normal file
141
lua/nvim-tree/appearance/diagnostics.lua
Normal file
@@ -0,0 +1,141 @@
|
|||||||
|
local appearance = require "nvim-tree.appearance"
|
||||||
|
|
||||||
|
-- others with name and links less than this arbitrary value are short
|
||||||
|
local SHORT_LEN = 50
|
||||||
|
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
---@class HighlightDisplay for :NvimTreeHiTest
|
||||||
|
---@field group string nvim-tree highlight group name
|
||||||
|
---@field links string link chain to a concretely defined group
|
||||||
|
---@field def string :hi concrete definition after following any links
|
||||||
|
local HighlightDisplay = {}
|
||||||
|
|
||||||
|
---@param group string nvim-tree highlight group name
|
||||||
|
---@return HighlightDisplay
|
||||||
|
function HighlightDisplay:new(group)
|
||||||
|
local o = {}
|
||||||
|
setmetatable(o, self)
|
||||||
|
self.__index = self
|
||||||
|
|
||||||
|
o.group = group
|
||||||
|
local concrete = o.group
|
||||||
|
|
||||||
|
-- maybe follow links
|
||||||
|
local links = {}
|
||||||
|
local link = vim.api.nvim_get_hl(0, { name = o.group }).link
|
||||||
|
while link do
|
||||||
|
table.insert(links, link)
|
||||||
|
concrete = link
|
||||||
|
link = vim.api.nvim_get_hl(0, { name = link }).link
|
||||||
|
end
|
||||||
|
o.links = table.concat(links, " ")
|
||||||
|
|
||||||
|
-- concrete definition
|
||||||
|
local ok, res = pcall(vim.api.nvim_cmd, { cmd = "highlight", args = { concrete } }, { output = true })
|
||||||
|
if ok and type(res) == "string" then
|
||||||
|
o.def = res:gsub(".*xxx *", "")
|
||||||
|
else
|
||||||
|
o.def = ""
|
||||||
|
end
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Render one group.
|
||||||
|
---@param bufnr number to render in
|
||||||
|
---@param fmt string format string for group, links, def
|
||||||
|
---@param l number line number to render at
|
||||||
|
---@return number l next line number
|
||||||
|
function HighlightDisplay:render(bufnr, fmt, l)
|
||||||
|
local text = string.format(fmt, self.group, self.links, self.def)
|
||||||
|
|
||||||
|
vim.api.nvim_buf_set_lines(bufnr, l, -1, true, { text })
|
||||||
|
vim.api.nvim_buf_add_highlight(bufnr, -1, self.group, l, 0, #self.group)
|
||||||
|
|
||||||
|
return l + 1
|
||||||
|
end
|
||||||
|
|
||||||
|
---Render many groups.
|
||||||
|
---@param header string before with underline line
|
||||||
|
---@param displays HighlightDisplay[] highlight group
|
||||||
|
---@param bufnr number to render in
|
||||||
|
---@param l number line number to start at
|
||||||
|
---@return number l next line number
|
||||||
|
local function render_displays(header, displays, bufnr, l)
|
||||||
|
local max_group_len = 0
|
||||||
|
local max_links_len = 0
|
||||||
|
|
||||||
|
-- build all highlight groups, using name only
|
||||||
|
for _, display in ipairs(displays) do
|
||||||
|
max_group_len = math.max(max_group_len, #display.group)
|
||||||
|
max_links_len = math.max(max_links_len, #display.links)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- header
|
||||||
|
vim.api.nvim_buf_set_lines(bufnr, l, -1, true, { header, (header:gsub(".", "-")) })
|
||||||
|
l = l + 2
|
||||||
|
|
||||||
|
-- render and highlight
|
||||||
|
local fmt = string.format("%%-%d.%ds %%-%d.%ds %%s", max_group_len, max_group_len, max_links_len, max_links_len)
|
||||||
|
for _, display in ipairs(displays) do
|
||||||
|
l = display:render(bufnr, fmt, l)
|
||||||
|
end
|
||||||
|
|
||||||
|
return l
|
||||||
|
end
|
||||||
|
|
||||||
|
---Run a test similar to :so $VIMRUNTIME/syntax/hitest.vim
|
||||||
|
---Display all nvim-tree and neovim highlight groups, their link chain and actual definition
|
||||||
|
function M.hi_test()
|
||||||
|
-- create a buffer
|
||||||
|
local bufnr = vim.api.nvim_create_buf(false, true)
|
||||||
|
|
||||||
|
local l = 0
|
||||||
|
|
||||||
|
-- nvim-tree groups, ordered
|
||||||
|
local displays = {}
|
||||||
|
for _, highlight_group in ipairs(appearance.HIGHLIGHT_GROUPS) do
|
||||||
|
local display = HighlightDisplay:new(highlight_group.group)
|
||||||
|
table.insert(displays, display)
|
||||||
|
end
|
||||||
|
l = render_displays("nvim-tree", displays, bufnr, l)
|
||||||
|
|
||||||
|
vim.api.nvim_buf_set_lines(bufnr, l, -1, true, { "" })
|
||||||
|
l = l + 1
|
||||||
|
|
||||||
|
-- built in groups, ordered opaquely by nvim
|
||||||
|
local displays_short, displays_long = {}, {}
|
||||||
|
local ok, out = pcall(vim.api.nvim_cmd, { cmd = "highlight" }, { output = true })
|
||||||
|
if ok then
|
||||||
|
for group in string.gmatch(out, "(%w*)%s+xxx") do
|
||||||
|
if group:find("NvimTree", 1, true) ~= 1 then
|
||||||
|
local display = HighlightDisplay:new(group)
|
||||||
|
if #display.group + #display.links > SHORT_LEN then
|
||||||
|
table.insert(displays_long, display)
|
||||||
|
else
|
||||||
|
table.insert(displays_short, display)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- short ones first
|
||||||
|
l = render_displays("other, short", displays_short, bufnr, l)
|
||||||
|
vim.api.nvim_buf_set_lines(bufnr, l, -1, true, { "" })
|
||||||
|
l = l + 1
|
||||||
|
|
||||||
|
-- long
|
||||||
|
render_displays("other, long", displays_long, bufnr, l)
|
||||||
|
|
||||||
|
-- finalise and focus the buffer
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value("modifiable", false, { buf = bufnr })
|
||||||
|
else
|
||||||
|
vim.api.nvim_buf_set_option(bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.cmd.buffer(bufnr)
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
201
lua/nvim-tree/appearance/init.lua
Normal file
201
lua/nvim-tree/appearance/init.lua
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
---@class HighlightGroup
|
||||||
|
---@field group string
|
||||||
|
---@field link string|nil
|
||||||
|
---@field def string|nil
|
||||||
|
|
||||||
|
---@type HighlightGroup[]
|
||||||
|
-- All highlight groups: linked or directly defined.
|
||||||
|
-- Please add new groups to help and preserve order.
|
||||||
|
-- Please avoid directly defined groups to preserve accessibility for TUI.
|
||||||
|
M.HIGHLIGHT_GROUPS = {
|
||||||
|
|
||||||
|
-- Standard
|
||||||
|
{ group = "NvimTreeNormal", link = "Normal" },
|
||||||
|
{ group = "NvimTreeNormalFloat", link = "NormalFloat" },
|
||||||
|
{ group = "NvimTreeNormalNC", link = "NvimTreeNormal" },
|
||||||
|
|
||||||
|
{ group = "NvimTreeLineNr", link = "LineNr" },
|
||||||
|
{ group = "NvimTreeWinSeparator", link = "WinSeparator" },
|
||||||
|
{ group = "NvimTreeEndOfBuffer", link = "EndOfBuffer" },
|
||||||
|
{ group = "NvimTreePopup", link = "Normal" },
|
||||||
|
{ group = "NvimTreeSignColumn", link = "NvimTreeNormal" },
|
||||||
|
|
||||||
|
{ group = "NvimTreeCursorColumn", link = "CursorColumn" },
|
||||||
|
{ group = "NvimTreeCursorLine", link = "CursorLine" },
|
||||||
|
{ group = "NvimTreeCursorLineNr", link = "CursorLineNr" },
|
||||||
|
|
||||||
|
{ group = "NvimTreeStatusLine", link = "StatusLine" },
|
||||||
|
{ group = "NvimTreeStatusLineNC", link = "StatusLineNC" },
|
||||||
|
|
||||||
|
-- File Text
|
||||||
|
{ group = "NvimTreeExecFile", link = "Question" },
|
||||||
|
{ group = "NvimTreeImageFile", link = "Question" },
|
||||||
|
{ group = "NvimTreeSpecialFile", link = "Title" },
|
||||||
|
{ group = "NvimTreeSymlink", link = "Underlined" },
|
||||||
|
|
||||||
|
-- Folder Text
|
||||||
|
{ group = "NvimTreeRootFolder", link = "Title" },
|
||||||
|
{ group = "NvimTreeFolderName", link = "Directory" },
|
||||||
|
{ group = "NvimTreeEmptyFolderName", link = "Directory" },
|
||||||
|
{ group = "NvimTreeOpenedFolderName", link = "Directory" },
|
||||||
|
{ group = "NvimTreeSymlinkFolderName", link = "Directory" },
|
||||||
|
|
||||||
|
-- File Icons
|
||||||
|
{ group = "NvimTreeFileIcon", link = "NvimTreeNormal" },
|
||||||
|
{ group = "NvimTreeSymlinkIcon", link = "NvimTreeNormal" },
|
||||||
|
|
||||||
|
-- Folder Icons
|
||||||
|
{ group = "NvimTreeFolderIcon", def = "guifg=#8094b4 ctermfg=Blue" },
|
||||||
|
{ group = "NvimTreeOpenedFolderIcon", link = "NvimTreeFolderIcon" },
|
||||||
|
{ group = "NvimTreeClosedFolderIcon", link = "NvimTreeFolderIcon" },
|
||||||
|
{ group = "NvimTreeFolderArrowClosed", link = "NvimTreeIndentMarker" },
|
||||||
|
{ group = "NvimTreeFolderArrowOpen", link = "NvimTreeIndentMarker" },
|
||||||
|
|
||||||
|
-- Indent
|
||||||
|
{ group = "NvimTreeIndentMarker", link = "NvimTreeFolderIcon" },
|
||||||
|
|
||||||
|
-- Picker
|
||||||
|
{ group = "NvimTreeWindowPicker", def = "guifg=#ededed guibg=#4493c8 gui=bold ctermfg=White ctermbg=DarkBlue" },
|
||||||
|
|
||||||
|
-- LiveFilter
|
||||||
|
{ group = "NvimTreeLiveFilterPrefix", link = "PreProc" },
|
||||||
|
{ group = "NvimTreeLiveFilterValue", link = "ModeMsg" },
|
||||||
|
|
||||||
|
-- Clipboard
|
||||||
|
{ group = "NvimTreeCutHL", link = "SpellBad" },
|
||||||
|
{ group = "NvimTreeCopiedHL", link = "SpellRare" },
|
||||||
|
|
||||||
|
-- Bookmark
|
||||||
|
{ group = "NvimTreeBookmarkIcon", link = "NvimTreeFolderIcon" },
|
||||||
|
{ group = "NvimTreeBookmarkHL", link = "SpellLocal" },
|
||||||
|
|
||||||
|
-- Modified
|
||||||
|
{ group = "NvimTreeModifiedIcon", link = "Type" },
|
||||||
|
{ group = "NvimTreeModifiedFileHL", link = "NvimTreeModifiedIcon" },
|
||||||
|
{ group = "NvimTreeModifiedFolderHL", link = "NvimTreeModifiedFileHL" },
|
||||||
|
|
||||||
|
-- Opened
|
||||||
|
{ group = "NvimTreeOpenedHL", link = "Special" },
|
||||||
|
|
||||||
|
-- Git Icon
|
||||||
|
{ group = "NvimTreeGitDeletedIcon", link = "Statement" },
|
||||||
|
{ group = "NvimTreeGitDirtyIcon", link = "Statement" },
|
||||||
|
{ group = "NvimTreeGitIgnoredIcon", link = "Comment" },
|
||||||
|
{ group = "NvimTreeGitMergeIcon", link = "Constant" },
|
||||||
|
{ group = "NvimTreeGitNewIcon", link = "PreProc" },
|
||||||
|
{ group = "NvimTreeGitRenamedIcon", link = "PreProc" },
|
||||||
|
{ group = "NvimTreeGitStagedIcon", link = "Constant" },
|
||||||
|
|
||||||
|
-- Git File Highlight
|
||||||
|
{ group = "NvimTreeGitFileDeletedHL", link = "NvimTreeGitDeletedIcon" },
|
||||||
|
{ group = "NvimTreeGitFileDirtyHL", link = "NvimTreeGitDirtyIcon" },
|
||||||
|
{ group = "NvimTreeGitFileIgnoredHL", link = "NvimTreeGitIgnoredIcon" },
|
||||||
|
{ group = "NvimTreeGitFileMergeHL", link = "NvimTreeGitMergeIcon" },
|
||||||
|
{ group = "NvimTreeGitFileNewHL", link = "NvimTreeGitNewIcon" },
|
||||||
|
{ group = "NvimTreeGitFileRenamedHL", link = "NvimTreeGitRenamedIcon" },
|
||||||
|
{ group = "NvimTreeGitFileStagedHL", link = "NvimTreeGitStagedIcon" },
|
||||||
|
|
||||||
|
-- Git Folder Highlight
|
||||||
|
{ group = "NvimTreeGitFolderDeletedHL", link = "NvimTreeGitFileDeletedHL" },
|
||||||
|
{ group = "NvimTreeGitFolderDirtyHL", link = "NvimTreeGitFileDirtyHL" },
|
||||||
|
{ group = "NvimTreeGitFolderIgnoredHL", link = "NvimTreeGitFileIgnoredHL" },
|
||||||
|
{ group = "NvimTreeGitFolderMergeHL", link = "NvimTreeGitFileMergeHL" },
|
||||||
|
{ group = "NvimTreeGitFolderNewHL", link = "NvimTreeGitFileNewHL" },
|
||||||
|
{ group = "NvimTreeGitFolderRenamedHL", link = "NvimTreeGitFileRenamedHL" },
|
||||||
|
{ group = "NvimTreeGitFolderStagedHL", link = "NvimTreeGitFileStagedHL" },
|
||||||
|
|
||||||
|
-- Diagnostics Icon
|
||||||
|
{ group = "NvimTreeDiagnosticErrorIcon", link = "DiagnosticError" },
|
||||||
|
{ group = "NvimTreeDiagnosticWarnIcon", link = "DiagnosticWarn" },
|
||||||
|
{ group = "NvimTreeDiagnosticInfoIcon", link = "DiagnosticInfo" },
|
||||||
|
{ group = "NvimTreeDiagnosticHintIcon", link = "DiagnosticHint" },
|
||||||
|
|
||||||
|
-- Diagnostics File Highlight
|
||||||
|
{ group = "NvimTreeDiagnosticErrorFileHL", link = "DiagnosticUnderlineError" },
|
||||||
|
{ group = "NvimTreeDiagnosticWarnFileHL", link = "DiagnosticUnderlineWarn" },
|
||||||
|
{ group = "NvimTreeDiagnosticInfoFileHL", link = "DiagnosticUnderlineInfo" },
|
||||||
|
{ group = "NvimTreeDiagnosticHintFileHL", link = "DiagnosticUnderlineHint" },
|
||||||
|
|
||||||
|
-- Diagnostics Folder Highlight
|
||||||
|
{ group = "NvimTreeDiagnosticErrorFolderHL", link = "NvimTreeDiagnosticErrorFileHL" },
|
||||||
|
{ group = "NvimTreeDiagnosticWarnFolderHL", link = "NvimTreeDiagnosticWarnFileHL" },
|
||||||
|
{ group = "NvimTreeDiagnosticInfoFolderHL", link = "NvimTreeDiagnosticInfoFileHL" },
|
||||||
|
{ group = "NvimTreeDiagnosticHintFolderHL", link = "NvimTreeDiagnosticHintFileHL" },
|
||||||
|
}
|
||||||
|
|
||||||
|
-- nvim-tree highlight groups to legacy
|
||||||
|
M.LEGACY_LINKS = {
|
||||||
|
NvimTreeModifiedIcon = "NvimTreeModifiedFile",
|
||||||
|
|
||||||
|
NvimTreeOpenedHL = "NvimTreeOpenedFile",
|
||||||
|
|
||||||
|
NvimTreeBookmarkIcon = "NvimTreeBookmark",
|
||||||
|
|
||||||
|
NvimTreeGitDeletedIcon = "NvimTreeGitDeleted",
|
||||||
|
NvimTreeGitDirtyIcon = "NvimTreeGitDirty",
|
||||||
|
NvimTreeGitIgnoredIcon = "NvimTreeGitIgnored",
|
||||||
|
NvimTreeGitMergeIcon = "NvimTreeGitMerge",
|
||||||
|
NvimTreeGitNewIcon = "NvimTreeGitNew",
|
||||||
|
NvimTreeGitRenamedIcon = "NvimTreeGitRenamed",
|
||||||
|
NvimTreeGitStagedIcon = "NvimTreeGitStaged",
|
||||||
|
|
||||||
|
NvimTreeGitFileDeletedHL = "NvimTreeFileDeleted",
|
||||||
|
NvimTreeGitFileDirtyHL = "NvimTreeFileDirty",
|
||||||
|
NvimTreeGitFileIgnoredHL = "NvimTreeFileIgnored",
|
||||||
|
NvimTreeGitFileMergeHL = "NvimTreeFileMerge",
|
||||||
|
NvimTreeGitFileNewHL = "NvimTreeFileNew",
|
||||||
|
NvimTreeGitFileRenamedHL = "NvimTreeFileRenamed",
|
||||||
|
NvimTreeGitFileStagedHL = "NvimTreeFileStaged",
|
||||||
|
|
||||||
|
NvimTreeGitFolderDeletedHL = "NvimTreeFolderDeleted",
|
||||||
|
NvimTreeGitFolderDirtyHL = "NvimTreeFolderDirty",
|
||||||
|
NvimTreeGitFolderIgnoredHL = "NvimTreeFolderIgnored",
|
||||||
|
NvimTreeGitFolderMergeHL = "NvimTreeFolderMerge",
|
||||||
|
NvimTreeGitFolderNewHL = "NvimTreeFolderNew",
|
||||||
|
NvimTreeGitFolderRenamedHL = "NvimTreeFolderRenamed",
|
||||||
|
NvimTreeGitFolderStagedHL = "NvimTreeFolderStaged",
|
||||||
|
|
||||||
|
NvimTreeDiagnosticErrorIcon = "NvimTreeLspDiagnosticsError",
|
||||||
|
NvimTreeDiagnosticWarnIcon = "NvimTreeLspDiagnosticsWarning",
|
||||||
|
NvimTreeDiagnosticInfoIcon = "NvimTreeLspDiagnosticsInformation",
|
||||||
|
NvimTreeDiagnosticHintIcon = "NvimTreeLspDiagnosticsHint",
|
||||||
|
|
||||||
|
NvimTreeDiagnosticErrorFileHL = "NvimTreeLspDiagnosticsErrorText",
|
||||||
|
NvimTreeDiagnosticWarnFileHL = "NvimTreeLspDiagnosticsWarningText",
|
||||||
|
NvimTreeDiagnosticInfoFileHL = "NvimTreeLspDiagnosticsInformationText",
|
||||||
|
NvimTreeDiagnosticHintFileHL = "NvimTreeLspDiagnosticsHintText",
|
||||||
|
|
||||||
|
NvimTreeDiagnosticErrorFolderHL = "NvimTreeLspDiagnosticsErrorFolderText",
|
||||||
|
NvimTreeDiagnosticWarnFolderHL = "NvimTreeLspDiagnosticsWarningFolderText",
|
||||||
|
NvimTreeDiagnosticInfoFolderHL = "NvimTreeLspDiagnosticsInformationFolderText",
|
||||||
|
NvimTreeDiagnosticHintFolderHL = "NvimTreeLspDiagnosticsHintFolderText",
|
||||||
|
}
|
||||||
|
|
||||||
|
function M.setup()
|
||||||
|
-- non-linked
|
||||||
|
for _, g in ipairs(M.HIGHLIGHT_GROUPS) do
|
||||||
|
if g.def then
|
||||||
|
vim.api.nvim_command("hi def " .. g.group .. " " .. g.def)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- hard link override when legacy only is present
|
||||||
|
for from, to in pairs(M.LEGACY_LINKS) do
|
||||||
|
local hl_from = vim.api.nvim_get_hl(0, { name = from })
|
||||||
|
local hl_to = vim.api.nvim_get_hl(0, { name = to })
|
||||||
|
if vim.tbl_isempty(hl_from) and not vim.tbl_isempty(hl_to) then
|
||||||
|
vim.api.nvim_command("hi link " .. from .. " " .. to)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- default links
|
||||||
|
for _, g in ipairs(M.HIGHLIGHT_GROUPS) do
|
||||||
|
if g.link then
|
||||||
|
vim.api.nvim_command("hi def link " .. g.group .. " " .. g.link)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
50
lua/nvim-tree/buffers.lua
Normal file
50
lua/nvim-tree/buffers.lua
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
---@type table<string, boolean> record of which file is modified
|
||||||
|
M._modified = {}
|
||||||
|
|
||||||
|
---refresh M._modified
|
||||||
|
function M.reload_modified()
|
||||||
|
M._modified = {}
|
||||||
|
local bufs = vim.fn.getbufinfo { bufmodified = 1, buflisted = 1 }
|
||||||
|
for _, buf in pairs(bufs) do
|
||||||
|
local path = buf.name
|
||||||
|
if path ~= "" then -- not a [No Name] buffer
|
||||||
|
-- mark all the parent as modified as well
|
||||||
|
while
|
||||||
|
M._modified[path] ~= true
|
||||||
|
-- no need to keep going if already recorded
|
||||||
|
-- This also prevents an infinite loop
|
||||||
|
do
|
||||||
|
M._modified[path] = true
|
||||||
|
path = vim.fn.fnamemodify(path, ":h")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---@param node table
|
||||||
|
---@return boolean
|
||||||
|
function M.is_modified(node)
|
||||||
|
return node
|
||||||
|
and M.config.modified.enable
|
||||||
|
and M._modified[node.absolute_path]
|
||||||
|
and (not node.nodes or M.config.modified.show_on_dirs)
|
||||||
|
and (not node.open or M.config.modified.show_on_open_dirs)
|
||||||
|
end
|
||||||
|
|
||||||
|
---A buffer exists for the node's absolute path
|
||||||
|
---@param node table
|
||||||
|
---@return boolean
|
||||||
|
function M.is_opened(node)
|
||||||
|
return node and vim.fn.bufloaded(node.absolute_path) > 0
|
||||||
|
end
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
function M.setup(opts)
|
||||||
|
M.config = {
|
||||||
|
modified = opts.modified,
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
@@ -1,130 +0,0 @@
|
|||||||
local M = {}
|
|
||||||
|
|
||||||
local function get_color_from_hl(hl_name, fallback)
|
|
||||||
local id = vim.api.nvim_get_hl_id_by_name(hl_name)
|
|
||||||
if not id then
|
|
||||||
return fallback
|
|
||||||
end
|
|
||||||
|
|
||||||
local foreground = vim.fn.synIDattr(vim.fn.synIDtrans(id), "fg")
|
|
||||||
if not foreground or foreground == "" then
|
|
||||||
return fallback
|
|
||||||
end
|
|
||||||
|
|
||||||
return foreground
|
|
||||||
end
|
|
||||||
|
|
||||||
local function get_colors()
|
|
||||||
return {
|
|
||||||
red = vim.g.terminal_color_1 or get_color_from_hl("Keyword", "Red"),
|
|
||||||
green = vim.g.terminal_color_2 or get_color_from_hl("Character", "Green"),
|
|
||||||
yellow = vim.g.terminal_color_3 or get_color_from_hl("PreProc", "Yellow"),
|
|
||||||
blue = vim.g.terminal_color_4 or get_color_from_hl("Include", "Blue"),
|
|
||||||
purple = vim.g.terminal_color_5 or get_color_from_hl("Define", "Purple"),
|
|
||||||
cyan = vim.g.terminal_color_6 or get_color_from_hl("Conditional", "Cyan"),
|
|
||||||
dark_red = vim.g.terminal_color_9 or get_color_from_hl("Keyword", "DarkRed"),
|
|
||||||
orange = vim.g.terminal_color_11 or get_color_from_hl("Number", "Orange"),
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
local function get_hl_groups()
|
|
||||||
local colors = get_colors()
|
|
||||||
|
|
||||||
return {
|
|
||||||
IndentMarker = { fg = "#8094b4" },
|
|
||||||
Symlink = { gui = "bold", fg = colors.cyan },
|
|
||||||
FolderIcon = { fg = "#8094b4" },
|
|
||||||
RootFolder = { fg = colors.purple },
|
|
||||||
|
|
||||||
ExecFile = { gui = "bold", fg = colors.green },
|
|
||||||
SpecialFile = { gui = "bold,underline", fg = colors.yellow },
|
|
||||||
ImageFile = { gui = "bold", fg = colors.purple },
|
|
||||||
OpenedFile = { gui = "bold", fg = colors.green },
|
|
||||||
ModifiedFile = { fg = colors.green },
|
|
||||||
|
|
||||||
GitDirty = { fg = colors.dark_red },
|
|
||||||
GitDeleted = { fg = colors.dark_red },
|
|
||||||
GitStaged = { fg = colors.green },
|
|
||||||
GitMerge = { fg = colors.orange },
|
|
||||||
GitRenamed = { fg = colors.purple },
|
|
||||||
GitNew = { fg = colors.yellow },
|
|
||||||
|
|
||||||
WindowPicker = { gui = "bold", fg = "#ededed", bg = "#4493c8" },
|
|
||||||
LiveFilterPrefix = { gui = "bold", fg = colors.purple },
|
|
||||||
LiveFilterValue = { gui = "bold", fg = "#fff" },
|
|
||||||
|
|
||||||
Bookmark = { fg = colors.green },
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
local function get_links()
|
|
||||||
return {
|
|
||||||
FolderName = "Directory",
|
|
||||||
EmptyFolderName = "Directory",
|
|
||||||
OpenedFolderName = "Directory",
|
|
||||||
SymlinkFolderName = "Directory",
|
|
||||||
OpenedFolderIcon = "NvimTreeFolderIcon",
|
|
||||||
ClosedFolderIcon = "NvimTreeFolderIcon",
|
|
||||||
OpenedFileIcon = "NvimTreeOpenedFile",
|
|
||||||
Normal = "Normal",
|
|
||||||
NormalFloat = "NormalFloat",
|
|
||||||
NormalNC = "NvimTreeNormal",
|
|
||||||
EndOfBuffer = "EndOfBuffer",
|
|
||||||
CursorLineNr = "CursorLineNr",
|
|
||||||
LineNr = "LineNr",
|
|
||||||
CursorLine = "CursorLine",
|
|
||||||
WinSeparator = "WinSeparator",
|
|
||||||
CursorColumn = "CursorColumn",
|
|
||||||
FileDirty = "NvimTreeGitDirty",
|
|
||||||
FileNew = "NvimTreeGitNew",
|
|
||||||
FileRenamed = "NvimTreeGitRenamed",
|
|
||||||
FileMerge = "NvimTreeGitMerge",
|
|
||||||
FileStaged = "NvimTreeGitStaged",
|
|
||||||
FileDeleted = "NvimTreeGitDeleted",
|
|
||||||
FileIgnored = "NvimTreeGitIgnored",
|
|
||||||
FolderDirty = "NvimTreeFileDirty",
|
|
||||||
FolderNew = "NvimTreeFileNew",
|
|
||||||
FolderRenamed = "NvimTreeFileRenamed",
|
|
||||||
FolderMerge = "NvimTreeFileMerge",
|
|
||||||
FolderStaged = "NvimTreeFileStaged",
|
|
||||||
FolderDeleted = "NvimTreeFileDeleted",
|
|
||||||
FolderIgnored = "NvimTreeFileIgnored",
|
|
||||||
LspDiagnosticsError = "DiagnosticError",
|
|
||||||
LspDiagnosticsWarning = "DiagnosticWarn",
|
|
||||||
LspDiagnosticsInformation = "DiagnosticInfo",
|
|
||||||
LspDiagnosticsHint = "DiagnosticHint",
|
|
||||||
LspDiagnosticsErrorText = "NvimTreeLspDiagnosticsError",
|
|
||||||
LspDiagnosticsWarningText = "NvimTreeLspDiagnosticsWarning",
|
|
||||||
LspDiagnosticsInformationText = "NvimTreeLspDiagnosticsInformation",
|
|
||||||
LspDiagnosticsHintText = "NvimTreeLspDiagnosticsHintFile",
|
|
||||||
LspDiagnosticsErrorFolderText = "NvimTreeLspDiagnosticsErrorText",
|
|
||||||
LspDiagnosticsWarningFolderText = "NvimTreeLspDiagnosticsWarningText",
|
|
||||||
LspDiagnosticsInformationFolderText = "NvimTreeLspDiagnosticsInformationText",
|
|
||||||
LspDiagnosticsHintFolderText = "NvimTreeLspDiagnosticsHintFileText",
|
|
||||||
Popup = "Normal",
|
|
||||||
GitIgnored = "Comment",
|
|
||||||
StatusLine = "StatusLine",
|
|
||||||
StatusLineNC = "StatusLineNC",
|
|
||||||
SignColumn = "NvimTreeNormal",
|
|
||||||
CutHL = "SpellBad",
|
|
||||||
CopiedHL = "SpellRare",
|
|
||||||
BookmarkHL = "SpellLocal",
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup()
|
|
||||||
local highlight_groups = get_hl_groups()
|
|
||||||
for k, d in pairs(highlight_groups) do
|
|
||||||
local gui = d.gui and " gui=" .. d.gui or ""
|
|
||||||
local fg = d.fg and " guifg=" .. d.fg or ""
|
|
||||||
local bg = d.bg and " guibg=" .. d.bg or ""
|
|
||||||
vim.api.nvim_command("hi def NvimTree" .. k .. gui .. fg .. bg)
|
|
||||||
end
|
|
||||||
|
|
||||||
local links = get_links()
|
|
||||||
for k, d in pairs(links) do
|
|
||||||
vim.api.nvim_command("hi def link NvimTree" .. k .. " " .. d)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -134,6 +134,13 @@ local CMDS = {
|
|||||||
api.tree.collapse_all(true)
|
api.tree.collapse_all(true)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name = "NvimTreeHiTest",
|
||||||
|
opts = {
|
||||||
|
desc = "nvim-tree: highlight test",
|
||||||
|
},
|
||||||
|
command = api.diagnostics.hi_test,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
function M.get()
|
function M.get()
|
||||||
|
|||||||
@@ -4,9 +4,6 @@ local log = require "nvim-tree.log"
|
|||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---TODO add "$VIMRUNTIME" to "workspace.library" and use the @enum instead of this integer
|
|
||||||
---@alias lsp.DiagnosticSeverity integer
|
|
||||||
|
|
||||||
---COC severity level strings to LSP severity levels
|
---COC severity level strings to LSP severity levels
|
||||||
---@enum COC_SEVERITY_LEVELS
|
---@enum COC_SEVERITY_LEVELS
|
||||||
local COC_SEVERITY_LEVELS = {
|
local COC_SEVERITY_LEVELS = {
|
||||||
@@ -42,19 +39,21 @@ end
|
|||||||
local function from_nvim_lsp()
|
local function from_nvim_lsp()
|
||||||
local buffer_severity = {}
|
local buffer_severity = {}
|
||||||
|
|
||||||
local is_disabled = false
|
-- is_enabled is not present in all 0.10 builds/releases, see #2781
|
||||||
if vim.fn.has "nvim-0.9" == 1 then
|
local is_enabled = false
|
||||||
is_disabled = vim.diagnostic.is_disabled()
|
if vim.fn.has "nvim-0.10" == 1 and type(vim.diagnostic.is_enabled) == "function" then
|
||||||
|
is_enabled = vim.diagnostic.is_enabled()
|
||||||
|
elseif type(vim.diagnostic.is_disabled) == "function" then ---@diagnostic disable-line: deprecated
|
||||||
|
is_enabled = not vim.diagnostic.is_disabled() ---@diagnostic disable-line: deprecated
|
||||||
end
|
end
|
||||||
|
|
||||||
if not is_disabled then
|
if is_enabled then
|
||||||
for _, diagnostic in ipairs(vim.diagnostic.get(nil, { severity = M.severity })) do
|
for _, diagnostic in ipairs(vim.diagnostic.get(nil, { severity = M.severity })) do
|
||||||
local buf = diagnostic.bufnr
|
if diagnostic.severity and diagnostic.bufnr and vim.api.nvim_buf_is_valid(diagnostic.bufnr) then
|
||||||
if vim.api.nvim_buf_is_valid(buf) then
|
local bufname = uniformize_path(vim.api.nvim_buf_get_name(diagnostic.bufnr))
|
||||||
local bufname = uniformize_path(vim.api.nvim_buf_get_name(buf))
|
if not buffer_severity[bufname] or diagnostic.severity < buffer_severity[bufname] then
|
||||||
local severity = diagnostic.severity
|
buffer_severity[bufname] = diagnostic.severity
|
||||||
local highest_severity = buffer_severity[bufname] or severity
|
end
|
||||||
buffer_severity[bufname] = math.min(highest_severity, severity)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -12,9 +12,10 @@ M.HL_POSITION = {
|
|||||||
---Setup options for "*_placement"
|
---Setup options for "*_placement"
|
||||||
---@enum ICON_PLACEMENT
|
---@enum ICON_PLACEMENT
|
||||||
M.ICON_PLACEMENT = {
|
M.ICON_PLACEMENT = {
|
||||||
signcolumn = 0,
|
none = 0,
|
||||||
before = 1,
|
signcolumn = 1,
|
||||||
after = 2,
|
before = 2,
|
||||||
|
after = 3,
|
||||||
}
|
}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -11,13 +11,6 @@ local Watcher = require "nvim-tree.watcher"
|
|||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---@param type_ string|nil
|
|
||||||
---@param cwd string
|
|
||||||
---@return any
|
|
||||||
local function get_type_from(type_, cwd)
|
|
||||||
return type_ or (vim.loop.fs_stat(cwd) or {}).type
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param handle uv.uv_fs_t
|
---@param handle uv.uv_fs_t
|
||||||
---@param cwd string
|
---@param cwd string
|
||||||
---@param node Node
|
---@param node Node
|
||||||
@@ -33,18 +26,19 @@ local function populate_children(handle, cwd, node, git_status)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local abs = utils.path_join { cwd, name }
|
local abs = utils.path_join { cwd, name }
|
||||||
|
|
||||||
local profile = log.profile_start("explore populate_children %s", abs)
|
local profile = log.profile_start("explore populate_children %s", abs)
|
||||||
|
|
||||||
t = get_type_from(t, abs)
|
---@type uv.fs_stat.result|nil
|
||||||
if not filters.should_filter(abs, filter_status) and not nodes_by_path[abs] and Watcher.is_fs_event_capable(abs) then
|
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
|
local child = nil
|
||||||
if t == "directory" and vim.loop.fs_access(abs, "R") then
|
if t == "directory" and vim.loop.fs_access(abs, "R") then
|
||||||
child = builders.folder(node, abs, name)
|
child = builders.folder(node, abs, name, stat)
|
||||||
elseif t == "file" then
|
elseif t == "file" then
|
||||||
child = builders.file(node, abs, name)
|
child = builders.file(node, abs, name, stat)
|
||||||
elseif t == "link" then
|
elseif t == "link" then
|
||||||
local link = builders.link(node, abs, name)
|
local link = builders.link(node, abs, name, stat)
|
||||||
if link.link_to ~= nil then
|
if link.link_to ~= nil then
|
||||||
child = link
|
child = link
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ local marks = require "nvim-tree.marks"
|
|||||||
local M = {
|
local M = {
|
||||||
ignore_list = {},
|
ignore_list = {},
|
||||||
exclude_list = {},
|
exclude_list = {},
|
||||||
|
custom_function = nil,
|
||||||
}
|
}
|
||||||
|
|
||||||
---@param path string
|
---@param path string
|
||||||
@@ -47,16 +48,15 @@ end
|
|||||||
---Check if the given path has no listed buffer
|
---Check if the given path has no listed buffer
|
||||||
---@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 }
|
||||||
---@param unloaded_bufnr number optional bufnr recently unloaded via BufUnload event
|
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function buf(path, bufinfo, unloaded_bufnr)
|
local function buf(path, bufinfo)
|
||||||
if not M.config.filter_no_buffer or type(bufinfo) ~= "table" then
|
if not M.config.filter_no_buffer or type(bufinfo) ~= "table" then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
-- filter files with no open buffer and directories containing no open buffers
|
-- filter files with no open buffer and directories containing no open buffers
|
||||||
for _, b in ipairs(bufinfo) do
|
for _, b in ipairs(bufinfo) do
|
||||||
if b.name == path or b.name:find(path .. "/", 1, true) and b.bufnr ~= unloaded_bufnr then
|
if b.name == path or b.name:find(path .. "/", 1, true) then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -71,9 +71,39 @@ local function dotfile(path)
|
|||||||
end
|
end
|
||||||
|
|
||||||
---@param path string
|
---@param path string
|
||||||
---@param bookmarks table<string, boolean> absolute paths bookmarked
|
---@param path_type string|nil filetype of path
|
||||||
local function bookmark(path, bookmarks)
|
---@param bookmarks table<string, string|nil> path, filetype table of bookmarked files
|
||||||
return M.config.filter_no_bookmark and not bookmarks[path]
|
local function bookmark(path, path_type, bookmarks)
|
||||||
|
if not M.config.filter_no_bookmark then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
-- if bookmark is empty, we should see a empty filetree
|
||||||
|
if next(bookmarks) == nil then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
|
local mark_parent = utils.path_add_trailing(path)
|
||||||
|
for mark, mark_type in pairs(bookmarks) do
|
||||||
|
if path == mark then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
if path_type == "directory" then
|
||||||
|
-- check if path is mark's parent
|
||||||
|
if vim.fn.stridx(mark, mark_parent) == 0 then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if mark_type == "directory" then
|
||||||
|
-- check if mark is path's parent
|
||||||
|
local path_parent = utils.path_add_trailing(mark)
|
||||||
|
if vim.fn.stridx(path, path_parent) == 0 then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param path string
|
---@param path string
|
||||||
@@ -85,6 +115,11 @@ local function custom(path)
|
|||||||
|
|
||||||
local basename = utils.path_basename(path)
|
local basename = utils.path_basename(path)
|
||||||
|
|
||||||
|
-- filter user's custom function
|
||||||
|
if M.custom_function and M.custom_function(path) then
|
||||||
|
return true
|
||||||
|
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(M.ignore_list) do
|
||||||
@@ -105,16 +140,13 @@ end
|
|||||||
|
|
||||||
---Prepare arguments for should_filter. This is done prior to should_filter for efficiency reasons.
|
---Prepare arguments for should_filter. This is done prior to should_filter for efficiency reasons.
|
||||||
---@param git_status table|nil optional results of git.load_project_status(...)
|
---@param git_status table|nil optional results of git.load_project_status(...)
|
||||||
---@param unloaded_bufnr number|nil optional bufnr recently unloaded via BufUnload event
|
|
||||||
---@return table
|
---@return table
|
||||||
--- git_status: reference
|
--- git_status: reference
|
||||||
--- unloaded_bufnr: copy
|
|
||||||
--- 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, unloaded_bufnr)
|
function M.prepare(git_status)
|
||||||
local status = {
|
local status = {
|
||||||
git_status = git_status or {},
|
git_status = git_status or {},
|
||||||
unloaded_bufnr = unloaded_bufnr,
|
|
||||||
bufinfo = {},
|
bufinfo = {},
|
||||||
bookmarks = {},
|
bookmarks = {},
|
||||||
}
|
}
|
||||||
@@ -124,7 +156,7 @@ function M.prepare(git_status, unloaded_bufnr)
|
|||||||
end
|
end
|
||||||
|
|
||||||
for _, node in pairs(marks.get_marks()) do
|
for _, node in pairs(marks.get_marks()) do
|
||||||
status.bookmarks[node.absolute_path] = true
|
status.bookmarks[node.absolute_path] = node.type
|
||||||
end
|
end
|
||||||
|
|
||||||
return status
|
return status
|
||||||
@@ -132,23 +164,29 @@ end
|
|||||||
|
|
||||||
---Check if the given path should be filtered.
|
---Check if the given path should be filtered.
|
||||||
---@param path string Absolute path
|
---@param path string Absolute path
|
||||||
|
---@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, status)
|
function M.should_filter(path, fs_stat, status)
|
||||||
|
if not M.config.enable then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
-- exclusions override all filters
|
-- exclusions override all filters
|
||||||
if is_excluded(path) then
|
if is_excluded(path) then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
return git(path, status.git_status)
|
return git(path, status.git_status)
|
||||||
or buf(path, status.bufinfo, status.unloaded_bufnr)
|
or buf(path, status.bufinfo)
|
||||||
or dotfile(path)
|
or dotfile(path)
|
||||||
or custom(path)
|
or custom(path)
|
||||||
or bookmark(path, status.bookmarks)
|
or bookmark(path, fs_stat and fs_stat.type, status.bookmarks)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.config = {
|
M.config = {
|
||||||
|
enable = opts.filters.enable,
|
||||||
filter_custom = true,
|
filter_custom = true,
|
||||||
filter_dotfiles = opts.filters.dotfiles,
|
filter_dotfiles = opts.filters.dotfiles,
|
||||||
filter_git_ignored = opts.filters.git_ignored,
|
filter_git_ignored = opts.filters.git_ignored,
|
||||||
@@ -161,11 +199,15 @@ function M.setup(opts)
|
|||||||
M.exclude_list = opts.filters.exclude
|
M.exclude_list = opts.filters.exclude
|
||||||
|
|
||||||
local custom_filter = opts.filters.custom
|
local custom_filter = opts.filters.custom
|
||||||
|
if type(custom_filter) == "function" then
|
||||||
|
M.custom_function = custom_filter
|
||||||
|
else
|
||||||
if custom_filter and #custom_filter > 0 then
|
if custom_filter and #custom_filter > 0 then
|
||||||
for _, filter_name in pairs(custom_filter) do
|
for _, filter_name in pairs(custom_filter) do
|
||||||
M.ignore_list[filter_name] = true
|
M.ignore_list[filter_name] = true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
local git = require "nvim-tree.git"
|
local git = require "nvim-tree.git"
|
||||||
|
local notify = require "nvim-tree.notify"
|
||||||
local watch = require "nvim-tree.explorer.watch"
|
local watch = require "nvim-tree.explorer.watch"
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
local explorer_node = require "nvim-tree.explorer.node"
|
||||||
|
|
||||||
@@ -15,14 +16,24 @@ M.reload = require("nvim-tree.explorer.reload").reload
|
|||||||
local Explorer = {}
|
local Explorer = {}
|
||||||
Explorer.__index = Explorer
|
Explorer.__index = Explorer
|
||||||
|
|
||||||
---@param cwd string|nil
|
---@param path string|nil
|
||||||
---@return Explorer
|
---@return Explorer|nil
|
||||||
function Explorer.new(cwd)
|
function Explorer.new(path)
|
||||||
cwd = vim.loop.fs_realpath(cwd or vim.loop.cwd())
|
local err
|
||||||
|
|
||||||
|
if path then
|
||||||
|
path, err = vim.loop.fs_realpath(path)
|
||||||
|
else
|
||||||
|
path, err = vim.loop.cwd()
|
||||||
|
end
|
||||||
|
if not path then
|
||||||
|
notify.error(err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
---@class Explorer
|
---@class Explorer
|
||||||
local explorer = setmetatable({
|
local explorer = setmetatable({
|
||||||
absolute_path = cwd,
|
absolute_path = path,
|
||||||
nodes = {},
|
nodes = {},
|
||||||
open = true,
|
open = true,
|
||||||
}, Explorer)
|
}, Explorer)
|
||||||
|
|||||||
@@ -6,15 +6,16 @@ local M = {}
|
|||||||
---@param parent Node
|
---@param parent Node
|
||||||
---@param absolute_path string
|
---@param absolute_path string
|
||||||
---@param name string
|
---@param name string
|
||||||
|
---@param fs_stat uv.fs_stat.result|nil
|
||||||
---@return Node
|
---@return Node
|
||||||
function M.folder(parent, absolute_path, name)
|
function M.folder(parent, absolute_path, name, fs_stat)
|
||||||
local handle = vim.loop.fs_scandir(absolute_path)
|
local handle = vim.loop.fs_scandir(absolute_path)
|
||||||
local has_children = handle and vim.loop.fs_scandir_next(handle) ~= nil
|
local has_children = handle and vim.loop.fs_scandir_next(handle) ~= nil
|
||||||
|
|
||||||
local node = {
|
local node = {
|
||||||
type = "directory",
|
type = "directory",
|
||||||
absolute_path = absolute_path,
|
absolute_path = absolute_path,
|
||||||
fs_stat = vim.loop.fs_stat(absolute_path),
|
fs_stat = fs_stat,
|
||||||
group_next = nil, -- If node is grouped, this points to the next child dir/link node
|
group_next = nil, -- If node is grouped, this points to the next child dir/link node
|
||||||
has_children = has_children,
|
has_children = has_children,
|
||||||
name = name,
|
name = name,
|
||||||
@@ -43,8 +44,9 @@ end
|
|||||||
---@param parent Node
|
---@param parent Node
|
||||||
---@param absolute_path string
|
---@param absolute_path string
|
||||||
---@param name string
|
---@param name string
|
||||||
|
---@param fs_stat uv.fs_stat.result|nil
|
||||||
---@return Node
|
---@return Node
|
||||||
function M.file(parent, absolute_path, name)
|
function M.file(parent, absolute_path, name, fs_stat)
|
||||||
local ext = string.match(name, ".?[^.]+%.(.*)") or ""
|
local ext = string.match(name, ".?[^.]+%.(.*)") or ""
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -52,7 +54,7 @@ function M.file(parent, absolute_path, name)
|
|||||||
absolute_path = absolute_path,
|
absolute_path = absolute_path,
|
||||||
executable = M.is_executable(absolute_path),
|
executable = M.is_executable(absolute_path),
|
||||||
extension = ext,
|
extension = ext,
|
||||||
fs_stat = vim.loop.fs_stat(absolute_path),
|
fs_stat = fs_stat,
|
||||||
name = name,
|
name = name,
|
||||||
parent = parent,
|
parent = parent,
|
||||||
}
|
}
|
||||||
@@ -66,15 +68,16 @@ end
|
|||||||
---@param parent Node
|
---@param parent Node
|
||||||
---@param absolute_path string
|
---@param absolute_path string
|
||||||
---@param name string
|
---@param name string
|
||||||
|
---@param fs_stat uv.fs_stat.result|nil
|
||||||
---@return Node
|
---@return Node
|
||||||
function M.link(parent, absolute_path, name)
|
function M.link(parent, absolute_path, name, fs_stat)
|
||||||
--- I dont know if this is needed, because in my understanding, there isn't hard links in windows, but just to be sure i changed it.
|
--- I dont know if this is needed, because in my understanding, there isn't hard links in windows, but just to be sure i changed it.
|
||||||
local link_to = vim.loop.fs_realpath(absolute_path)
|
local link_to = vim.loop.fs_realpath(absolute_path)
|
||||||
local open, nodes, has_children
|
local open, nodes, has_children
|
||||||
|
|
||||||
local is_dir_link = (link_to ~= nil) and vim.loop.fs_stat(link_to).type == "directory"
|
local is_dir_link = (link_to ~= nil) and vim.loop.fs_stat(link_to).type == "directory"
|
||||||
|
|
||||||
if is_dir_link then
|
if is_dir_link and link_to then
|
||||||
local handle = vim.loop.fs_scandir(link_to)
|
local handle = vim.loop.fs_scandir(link_to)
|
||||||
has_children = handle and vim.loop.fs_scandir_next(handle) ~= nil
|
has_children = handle and vim.loop.fs_scandir_next(handle) ~= nil
|
||||||
open = false
|
open = false
|
||||||
@@ -84,7 +87,7 @@ function M.link(parent, absolute_path, name)
|
|||||||
local node = {
|
local node = {
|
||||||
type = "link",
|
type = "link",
|
||||||
absolute_path = absolute_path,
|
absolute_path = absolute_path,
|
||||||
fs_stat = vim.loop.fs_stat(absolute_path),
|
fs_stat = fs_stat,
|
||||||
group_next = nil, -- If node is grouped, this points to the next child dir/link node
|
group_next = nil, -- If node is grouped, this points to the next child dir/link node
|
||||||
has_children = has_children,
|
has_children = has_children,
|
||||||
link_to = link_to,
|
link_to = link_to,
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ end
|
|||||||
---@param absolute_path string
|
---@param absolute_path string
|
||||||
---@return GitStatus
|
---@return GitStatus
|
||||||
local function get_git_status(parent_ignored, status, absolute_path)
|
local function get_git_status(parent_ignored, status, absolute_path)
|
||||||
local file_status = parent_ignored and "!!" or status.files and status.files[absolute_path]
|
local file_status = parent_ignored and "!!" or (status and status.files and status.files[absolute_path])
|
||||||
return { file = file_status }
|
return { file = file_status }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -69,8 +69,7 @@ end
|
|||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
---@param git_status table
|
---@param git_status table
|
||||||
---@param unloaded_bufnr number|nil
|
function M.reload(node, git_status)
|
||||||
function M.reload(node, git_status, unloaded_bufnr)
|
|
||||||
local cwd = node.link_to or node.absolute_path
|
local cwd = node.link_to or node.absolute_path
|
||||||
local handle = vim.loop.fs_scandir(cwd)
|
local handle = vim.loop.fs_scandir(cwd)
|
||||||
if not handle then
|
if not handle then
|
||||||
@@ -79,37 +78,30 @@ function M.reload(node, git_status, unloaded_bufnr)
|
|||||||
|
|
||||||
local profile = log.profile_start("reload %s", node.absolute_path)
|
local profile = log.profile_start("reload %s", node.absolute_path)
|
||||||
|
|
||||||
local filter_status = filters.prepare(git_status, unloaded_bufnr)
|
local filter_status = filters.prepare(git_status)
|
||||||
|
|
||||||
if node.group_next then
|
if node.group_next then
|
||||||
node.nodes = { node.group_next }
|
node.nodes = { node.group_next }
|
||||||
node.group_next = nil
|
node.group_next = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
local child_names = {}
|
local remain_childs = {}
|
||||||
|
|
||||||
local node_ignored = explorer_node.is_git_ignored(node)
|
local node_ignored = explorer_node.is_git_ignored(node)
|
||||||
|
---@type table<string, Node>
|
||||||
local nodes_by_path = utils.key_by(node.nodes, "absolute_path")
|
local nodes_by_path = utils.key_by(node.nodes, "absolute_path")
|
||||||
while true do
|
while true do
|
||||||
local name, t = vim.loop.fs_scandir_next(handle, cwd)
|
local name, t = vim.loop.fs_scandir_next(handle)
|
||||||
if not name then
|
if not name then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
local stat
|
|
||||||
local function fs_stat_cached(path)
|
|
||||||
if stat ~= nil then
|
|
||||||
return stat
|
|
||||||
end
|
|
||||||
|
|
||||||
stat = vim.loop.fs_stat(path)
|
|
||||||
return stat
|
|
||||||
end
|
|
||||||
|
|
||||||
local abs = utils.path_join { cwd, name }
|
local abs = utils.path_join { cwd, name }
|
||||||
t = t or (fs_stat_cached(abs) or {}).type
|
---@type uv.fs_stat.result|nil
|
||||||
if not filters.should_filter(abs, filter_status) then
|
local stat = vim.loop.fs_stat(abs)
|
||||||
child_names[abs] = true
|
|
||||||
|
if not filters.should_filter(abs, stat, filter_status) then
|
||||||
|
remain_childs[abs] = true
|
||||||
|
|
||||||
-- Recreate node if type changes.
|
-- Recreate node if type changes.
|
||||||
if nodes_by_path[abs] then
|
if nodes_by_path[abs] then
|
||||||
@@ -123,26 +115,26 @@ function M.reload(node, git_status, unloaded_bufnr)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if not nodes_by_path[abs] then
|
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
|
if t == "directory" and vim.loop.fs_access(abs, "R") and Watcher.is_fs_event_capable(abs) then
|
||||||
local folder = builders.folder(node, abs, name)
|
new_child = builders.folder(node, abs, name, stat)
|
||||||
nodes_by_path[abs] = folder
|
|
||||||
table.insert(node.nodes, folder)
|
|
||||||
elseif t == "file" then
|
elseif t == "file" then
|
||||||
local file = builders.file(node, abs, name)
|
new_child = builders.file(node, abs, name, stat)
|
||||||
nodes_by_path[abs] = file
|
|
||||||
table.insert(node.nodes, file)
|
|
||||||
elseif t == "link" then
|
elseif t == "link" then
|
||||||
local link = builders.link(node, abs, name)
|
local link = builders.link(node, abs, name, stat)
|
||||||
if link.link_to ~= nil then
|
if link.link_to ~= nil then
|
||||||
nodes_by_path[abs] = link
|
new_child = link
|
||||||
table.insert(node.nodes, link)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if new_child then
|
||||||
|
table.insert(node.nodes, new_child)
|
||||||
|
nodes_by_path[abs] = new_child
|
||||||
|
end
|
||||||
else
|
else
|
||||||
local n = nodes_by_path[abs]
|
local n = nodes_by_path[abs]
|
||||||
if n then
|
if n then
|
||||||
n.executable = builders.is_executable(abs)
|
n.executable = builders.is_executable(abs) or false
|
||||||
n.fs_stat = fs_stat_cached(abs)
|
n.fs_stat = stat
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -151,8 +143,8 @@ function M.reload(node, git_status, unloaded_bufnr)
|
|||||||
node.nodes = vim.tbl_map(
|
node.nodes = vim.tbl_map(
|
||||||
update_status(nodes_by_path, node_ignored, git_status),
|
update_status(nodes_by_path, node_ignored, git_status),
|
||||||
vim.tbl_filter(function(n)
|
vim.tbl_filter(function(n)
|
||||||
if child_names[n.absolute_path] then
|
if remain_childs[n.absolute_path] then
|
||||||
return child_names[n.absolute_path]
|
return remain_childs[n.absolute_path]
|
||||||
else
|
else
|
||||||
explorer_node.node_destroy(n)
|
explorer_node.node_destroy(n)
|
||||||
return false
|
return false
|
||||||
|
|||||||
@@ -136,6 +136,10 @@ end
|
|||||||
---@param path string absolute
|
---@param path string absolute
|
||||||
---@return string|nil
|
---@return string|nil
|
||||||
function M.get_toplevel(path)
|
function M.get_toplevel(path)
|
||||||
|
if not path then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
if not M.config.git.enable then
|
if not M.config.git.enable then
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -2,11 +2,6 @@ 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"
|
||||||
|
|
||||||
-- TODO add "${3rd}/luv/library" to "workspace.library"
|
|
||||||
---@class uv.uv_handle_t: table
|
|
||||||
---@class uv.uv_stream_t: uv.uv_handle_t
|
|
||||||
---@class uv.uv_pipe_t: uv.uv_stream_t
|
|
||||||
|
|
||||||
---@class Runner
|
---@class Runner
|
||||||
local Runner = {}
|
local Runner = {}
|
||||||
Runner.__index = Runner
|
Runner.__index = Runner
|
||||||
|
|||||||
@@ -119,14 +119,20 @@ local function compute()
|
|||||||
-- increase desc if lines are shorter than the header
|
-- increase desc if lines are shorter than the header
|
||||||
max_desc = math.max(max_desc, #head_lhs + #head_rhs1 - max_lhs)
|
max_desc = math.max(max_desc, #head_lhs + #head_rhs1 - max_lhs)
|
||||||
|
|
||||||
-- header, not padded
|
-- header text, not padded
|
||||||
local hl = { { "NvimTreeRootFolder", 0, 0, #head_lhs } }
|
|
||||||
local lines = {
|
local lines = {
|
||||||
head_lhs .. string.rep(" ", max_desc + max_lhs - #head_lhs - #head_rhs1 + 2) .. head_rhs1,
|
head_lhs .. string.rep(" ", max_desc + max_lhs - #head_lhs - #head_rhs1 + 2) .. head_rhs1,
|
||||||
string.rep(" ", max_desc + max_lhs - #head_rhs2 + 2) .. head_rhs2,
|
string.rep(" ", max_desc + max_lhs - #head_rhs2 + 2) .. head_rhs2,
|
||||||
}
|
}
|
||||||
local width = #lines[1]
|
local width = #lines[1]
|
||||||
|
|
||||||
|
-- header highlight, assume one character keys
|
||||||
|
local hl = {
|
||||||
|
{ "NvimTreeFolderName", 0, 0, #head_lhs },
|
||||||
|
{ "NvimTreeFolderName", 0, width - 1, width },
|
||||||
|
{ "NvimTreeFolderName", 1, width - 1, width },
|
||||||
|
}
|
||||||
|
|
||||||
-- mappings, left padded 1
|
-- mappings, left padded 1
|
||||||
local fmt = string.format(" %%-%ds %%-%ds", max_lhs, max_desc)
|
local fmt = string.format(" %%-%ds %%-%ds", max_lhs, max_desc)
|
||||||
for i, l in ipairs(mappings) do
|
for i, l in ipairs(mappings) do
|
||||||
@@ -167,7 +173,12 @@ 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)
|
||||||
vim.api.nvim_buf_set_option(M.bufnr, "modifiable", false)
|
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value("modifiable", false, { buf = M.bufnr })
|
||||||
|
else
|
||||||
|
vim.api.nvim_buf_set_option(M.bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
-- highlight it
|
-- highlight it
|
||||||
for _, h in ipairs(hl) do
|
for _, h in ipairs(hl) do
|
||||||
|
|||||||
@@ -68,10 +68,12 @@ function M.default_on_attach(bufnr)
|
|||||||
vim.keymap.set('n', 'f', api.live_filter.start, opts('Live Filter: Start'))
|
vim.keymap.set('n', 'f', api.live_filter.start, opts('Live Filter: Start'))
|
||||||
vim.keymap.set('n', 'g?', api.tree.toggle_help, opts('Help'))
|
vim.keymap.set('n', 'g?', api.tree.toggle_help, opts('Help'))
|
||||||
vim.keymap.set('n', 'gy', api.fs.copy.absolute_path, opts('Copy Absolute Path'))
|
vim.keymap.set('n', 'gy', api.fs.copy.absolute_path, opts('Copy Absolute Path'))
|
||||||
|
vim.keymap.set('n', 'ge', api.fs.copy.basename, opts('Copy Basename'))
|
||||||
vim.keymap.set('n', 'H', api.tree.toggle_hidden_filter, opts('Toggle Filter: Dotfiles'))
|
vim.keymap.set('n', 'H', api.tree.toggle_hidden_filter, opts('Toggle Filter: Dotfiles'))
|
||||||
vim.keymap.set('n', 'I', api.tree.toggle_gitignore_filter, opts('Toggle Filter: Git Ignore'))
|
vim.keymap.set('n', 'I', api.tree.toggle_gitignore_filter, opts('Toggle Filter: Git Ignore'))
|
||||||
vim.keymap.set('n', 'J', api.node.navigate.sibling.last, opts('Last Sibling'))
|
vim.keymap.set('n', 'J', api.node.navigate.sibling.last, opts('Last Sibling'))
|
||||||
vim.keymap.set('n', 'K', api.node.navigate.sibling.first, opts('First Sibling'))
|
vim.keymap.set('n', 'K', api.node.navigate.sibling.first, opts('First Sibling'))
|
||||||
|
vim.keymap.set('n', 'L', api.node.open.toggle_group_empty, opts('Toggle Group Empty'))
|
||||||
vim.keymap.set('n', 'M', api.tree.toggle_no_bookmark_filter, opts('Toggle Filter: No Bookmark'))
|
vim.keymap.set('n', 'M', api.tree.toggle_no_bookmark_filter, opts('Toggle Filter: No Bookmark'))
|
||||||
vim.keymap.set('n', 'm', api.marks.toggle, opts('Toggle Bookmark'))
|
vim.keymap.set('n', 'm', api.marks.toggle, opts('Toggle Bookmark'))
|
||||||
vim.keymap.set('n', 'o', api.node.open.edit, opts('Open'))
|
vim.keymap.set('n', 'o', api.node.open.edit, opts('Open'))
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ local notify = require "nvim-tree.notify"
|
|||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
-- silently move, please add to help nvim-tree-legacy-opts
|
||||||
local function refactored(opts)
|
local function refactored(opts)
|
||||||
-- 2022/06/20
|
-- 2022/06/20
|
||||||
utils.move_missing_val(opts, "update_focused_file", "update_cwd", opts, "update_focused_file", "update_root", true)
|
utils.move_missing_val(opts, "update_focused_file", "update_cwd", opts, "update_focused_file", "update_root", true)
|
||||||
@@ -41,6 +42,24 @@ local function refactored(opts)
|
|||||||
|
|
||||||
-- 2023/08/26
|
-- 2023/08/26
|
||||||
utils.move_missing_val(opts, "renderer.icons", "webdev_colors", opts, "renderer.icons.web_devicons.file", "color", true)
|
utils.move_missing_val(opts, "renderer.icons", "webdev_colors", opts, "renderer.icons.web_devicons.file", "color", true)
|
||||||
|
|
||||||
|
-- 2023/10/08
|
||||||
|
if type(opts.renderer) == "table" and type(opts.renderer.highlight_diagnostics) == "boolean" then
|
||||||
|
opts.renderer.highlight_diagnostics = opts.renderer.highlight_diagnostics and "name" or "none"
|
||||||
|
end
|
||||||
|
|
||||||
|
-- 2023/10/21
|
||||||
|
if type(opts.renderer) == "table" and type(opts.renderer.highlight_git) == "boolean" then
|
||||||
|
opts.renderer.highlight_git = opts.renderer.highlight_git and "name" or "none"
|
||||||
|
end
|
||||||
|
|
||||||
|
-- 2024/02/15
|
||||||
|
if type(opts.update_focused_file) == "table" then
|
||||||
|
if type(opts.update_focused_file.update_root) ~= "table" then
|
||||||
|
opts.update_focused_file.update_root = { enable = opts.update_focused_file.update_root }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
utils.move_missing_val(opts, "update_focused_file", "ignore_list", opts, "update_focused_file.update_root", "ignore_list", true)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function deprecated(opts)
|
local function deprecated(opts)
|
||||||
@@ -51,12 +70,12 @@ 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, see note in the README (tips & reminder section)"
|
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 and will be replaced by a new startup configuration. Please remove this option. See https://bit.ly/3yJch2T"
|
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
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ 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 explorer_node = require "nvim-tree.explorer.node"
|
||||||
|
|
||||||
---@class LibOpenOpts
|
---@class LibOpenOpts
|
||||||
---@field path string|nil path
|
---@field path string|nil path
|
||||||
@@ -24,7 +26,7 @@ function M.get_node_at_cursor()
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local cursor = vim.api.nvim_win_get_cursor(view.get_winnr())
|
local cursor = vim.api.nvim_win_get_cursor(winnr)
|
||||||
local line = cursor[1]
|
local line = cursor[1]
|
||||||
|
|
||||||
if line == 1 and view.is_root_folder_visible(core.get_cwd()) then
|
if line == 1 and view.is_root_folder_visible(core.get_cwd()) then
|
||||||
@@ -56,6 +58,7 @@ local function clone_node(node)
|
|||||||
name = node.name,
|
name = node.name,
|
||||||
open = node.open,
|
open = node.open,
|
||||||
type = node.type,
|
type = node.type,
|
||||||
|
fs_stat = node.fs_stat,
|
||||||
}
|
}
|
||||||
|
|
||||||
if type(node.nodes) == "table" then
|
if type(node.nodes) == "table" then
|
||||||
@@ -82,8 +85,35 @@ function M.get_last_group_node(node)
|
|||||||
node = node.group_next
|
node = node.group_next
|
||||||
end
|
end
|
||||||
|
|
||||||
---@diagnostic disable-next-line: return-type-mismatch -- it can't be nil
|
return node ---@diagnostic disable-line: return-type-mismatch -- it can't be nil
|
||||||
return node
|
end
|
||||||
|
|
||||||
|
---Group empty folders
|
||||||
|
-- Recursively group nodes
|
||||||
|
---@param node Node
|
||||||
|
---@return Node[]
|
||||||
|
function M.group_empty_folders(node)
|
||||||
|
local is_root = not node.parent
|
||||||
|
local child_folder_only = explorer_node.has_one_child_folder(node) and node.nodes[1]
|
||||||
|
if M.group_empty and not is_root and child_folder_only then
|
||||||
|
node.group_next = child_folder_only
|
||||||
|
local ns = M.group_empty_folders(child_folder_only)
|
||||||
|
node.nodes = ns or {}
|
||||||
|
return ns
|
||||||
|
end
|
||||||
|
return node.nodes
|
||||||
|
end
|
||||||
|
|
||||||
|
---Ungroup empty folders
|
||||||
|
-- If a node is grouped, ungroup it: put node.group_next to the node.nodes and set node.group_next to nil
|
||||||
|
---@param node Node
|
||||||
|
function M.ungroup_empty_folders(node)
|
||||||
|
local cur = node
|
||||||
|
while cur and cur.group_next do
|
||||||
|
cur.nodes = { cur.group_next }
|
||||||
|
cur.group_next = nil
|
||||||
|
cur = cur.nodes[1]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
@@ -98,8 +128,21 @@ function M.get_all_nodes_in_group(node)
|
|||||||
return nodes
|
return nodes
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Toggle group empty folders
|
||||||
|
---@param head_node Node
|
||||||
|
local function toggle_group_folders(head_node)
|
||||||
|
local is_grouped = head_node.group_next ~= nil
|
||||||
|
|
||||||
|
if is_grouped then
|
||||||
|
M.ungroup_empty_folders(head_node)
|
||||||
|
else
|
||||||
|
M.group_empty_folders(head_node)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
---@param node Node
|
---@param node Node
|
||||||
function M.expand_or_collapse(node)
|
function M.expand_or_collapse(node, toggle_group)
|
||||||
|
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
|
||||||
@@ -108,9 +151,20 @@ function M.expand_or_collapse(node)
|
|||||||
core.get_explorer():expand(node)
|
core.get_explorer():expand(node)
|
||||||
end
|
end
|
||||||
|
|
||||||
local open = not M.get_last_group_node(node).open
|
local head_node = utils.get_parent_of_group(node)
|
||||||
for _, n in ipairs(M.get_all_nodes_in_group(node)) do
|
if toggle_group then
|
||||||
n.open = open
|
toggle_group_folders(head_node)
|
||||||
|
end
|
||||||
|
|
||||||
|
local open = M.get_last_group_node(node).open
|
||||||
|
local next_open
|
||||||
|
if toggle_group then
|
||||||
|
next_open = open
|
||||||
|
else
|
||||||
|
next_open = not open
|
||||||
|
end
|
||||||
|
for _, n in ipairs(M.get_all_nodes_in_group(head_node)) do
|
||||||
|
n.open = next_open
|
||||||
end
|
end
|
||||||
|
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
@@ -144,8 +198,15 @@ end
|
|||||||
local function should_hijack_current_buf()
|
local function should_hijack_current_buf()
|
||||||
local bufnr = vim.api.nvim_get_current_buf()
|
local bufnr = vim.api.nvim_get_current_buf()
|
||||||
local bufname = vim.api.nvim_buf_get_name(bufnr)
|
local bufname = vim.api.nvim_buf_get_name(bufnr)
|
||||||
local bufmodified = vim.api.nvim_buf_get_option(bufnr, "modified")
|
|
||||||
local ft = vim.api.nvim_buf_get_option(bufnr, "ft")
|
local bufmodified, ft
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
bufmodified = vim.api.nvim_get_option_value("modified", { buf = bufnr })
|
||||||
|
ft = vim.api.nvim_get_option_value("ft", { buf = bufnr })
|
||||||
|
else
|
||||||
|
bufmodified = vim.api.nvim_buf_get_option(bufnr, "modified") ---@diagnostic disable-line: deprecated
|
||||||
|
ft = vim.api.nvim_buf_get_option(bufnr, "ft") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
local should_hijack_unnamed = M.hijack_unnamed_buffer_when_opening and bufname == "" and not bufmodified and ft == ""
|
local should_hijack_unnamed = M.hijack_unnamed_buffer_when_opening and bufname == "" and not bufmodified and ft == ""
|
||||||
local should_hijack_dir = bufname ~= "" and vim.fn.isdirectory(bufname) == 1 and M.hijack_directories.enable
|
local should_hijack_dir = bufname ~= "" and vim.fn.isdirectory(bufname) == 1 and M.hijack_directories.enable
|
||||||
@@ -189,7 +250,16 @@ function M.open(opts)
|
|||||||
|
|
||||||
M.set_target_win()
|
M.set_target_win()
|
||||||
if not core.get_explorer() or opts.path then
|
if not core.get_explorer() or opts.path then
|
||||||
core.init(opts.path or vim.loop.cwd())
|
if opts.path then
|
||||||
|
core.init(opts.path)
|
||||||
|
else
|
||||||
|
local cwd, err = vim.loop.cwd()
|
||||||
|
if not cwd then
|
||||||
|
notify.error(string.format("current working directory unavailable: %s", err))
|
||||||
|
return
|
||||||
|
end
|
||||||
|
core.init(cwd)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
if should_hijack_current_buf() then
|
if should_hijack_current_buf() then
|
||||||
view.close_this_tab_only()
|
view.close_this_tab_only()
|
||||||
@@ -213,6 +283,7 @@ function M.setup(opts)
|
|||||||
M.hijack_directories = opts.hijack_directories
|
M.hijack_directories = opts.hijack_directories
|
||||||
M.respect_buf_cwd = opts.respect_buf_cwd
|
M.respect_buf_cwd = opts.respect_buf_cwd
|
||||||
M.select_prompts = opts.select_prompts
|
M.select_prompts = opts.select_prompts
|
||||||
|
M.group_empty = opts.renderer.group_empty
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
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 = {
|
local M = {
|
||||||
filter = nil,
|
filter = nil,
|
||||||
@@ -26,8 +27,8 @@ local function reset_filter(node_)
|
|||||||
:iterate()
|
:iterate()
|
||||||
end
|
end
|
||||||
|
|
||||||
local overlay_bufnr = nil
|
local overlay_bufnr = 0
|
||||||
local overlay_winnr = nil
|
local overlay_winnr = 0
|
||||||
|
|
||||||
local function remove_overlay()
|
local function remove_overlay()
|
||||||
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
|
||||||
@@ -45,8 +46,8 @@ local function remove_overlay()
|
|||||||
|
|
||||||
vim.api.nvim_win_close(overlay_winnr, true)
|
vim.api.nvim_win_close(overlay_winnr, true)
|
||||||
vim.api.nvim_buf_delete(overlay_bufnr, { force = true })
|
vim.api.nvim_buf_delete(overlay_bufnr, { force = true })
|
||||||
overlay_bufnr = nil
|
overlay_bufnr = 0
|
||||||
overlay_winnr = nil
|
overlay_winnr = 0
|
||||||
|
|
||||||
if M.filter == "" then
|
if M.filter == "" then
|
||||||
M.clear_filter()
|
M.clear_filter()
|
||||||
@@ -56,6 +57,10 @@ end
|
|||||||
---@param node Node
|
---@param node Node
|
||||||
---@return boolean
|
---@return boolean
|
||||||
local function matches(node)
|
local function matches(node)
|
||||||
|
if not filters.config.enable then
|
||||||
|
return true
|
||||||
|
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(M.filter):match_str(name) ~= nil
|
||||||
@@ -145,7 +150,13 @@ local function create_overlay()
|
|||||||
border = "none",
|
border = "none",
|
||||||
style = "minimal",
|
style = "minimal",
|
||||||
})
|
})
|
||||||
vim.api.nvim_buf_set_option(overlay_bufnr, "modifiable", true)
|
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value("modifiable", true, { buf = overlay_bufnr })
|
||||||
|
else
|
||||||
|
vim.api.nvim_buf_set_option(overlay_bufnr, "modifiable", true) ---@diagnostic disable-line: deprecated
|
||||||
|
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, { M.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, #M.filter + 1 })
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ local core = require "nvim-tree.core"
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local rename_file = require "nvim-tree.actions.fs.rename-file"
|
local rename_file = require "nvim-tree.actions.fs.rename-file"
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
|
local lib = require "nvim-tree.lib"
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
config = {},
|
config = {},
|
||||||
@@ -14,9 +15,18 @@ function M.bulk_move()
|
|||||||
return
|
return
|
||||||
end
|
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 = {
|
local input_opts = {
|
||||||
prompt = "Move to: ",
|
prompt = "Move to: ",
|
||||||
default = core.get_cwd(),
|
default = default_path,
|
||||||
completion = "dir",
|
completion = "dir",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ end
|
|||||||
---@param node Node|MinimalNode
|
---@param node Node|MinimalNode
|
||||||
---@return table|nil
|
---@return table|nil
|
||||||
function M.get_mark(node)
|
function M.get_mark(node)
|
||||||
return NvimTreeMarks[node.absolute_path]
|
return node and NvimTreeMarks[node.absolute_path]
|
||||||
end
|
end
|
||||||
|
|
||||||
---@return table
|
---@return table
|
||||||
|
|||||||
@@ -1,40 +0,0 @@
|
|||||||
local M = {}
|
|
||||||
|
|
||||||
---@type table<string, boolean> record of which file is modified
|
|
||||||
M._record = {}
|
|
||||||
|
|
||||||
---refresh M.record
|
|
||||||
function M.reload()
|
|
||||||
M._record = {}
|
|
||||||
local bufs = vim.fn.getbufinfo { bufmodified = true, buflisted = true }
|
|
||||||
for _, buf in pairs(bufs) do
|
|
||||||
local path = buf.name
|
|
||||||
if path ~= "" then -- not a [No Name] buffer
|
|
||||||
-- mark all the parent as modified as well
|
|
||||||
while
|
|
||||||
M._record[path] ~= true
|
|
||||||
-- no need to keep going if already recorded
|
|
||||||
-- This also prevents an infinite loop
|
|
||||||
do
|
|
||||||
M._record[path] = true
|
|
||||||
path = vim.fn.fnamemodify(path, ":h")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node Node
|
|
||||||
---@return boolean
|
|
||||||
function M.is_modified(node)
|
|
||||||
return M.config.enable
|
|
||||||
and M._record[node.absolute_path]
|
|
||||||
and (not node.nodes or M.config.show_on_dirs)
|
|
||||||
and (not node.open or M.config.show_on_open_dirs)
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param opts table
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config = opts.modified
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -1,16 +1,12 @@
|
|||||||
---@meta
|
---@meta
|
||||||
|
|
||||||
-- TODO add "${3rd}/luv/library" to "workspace.library"
|
|
||||||
---@class uv.uv_req_t: table
|
|
||||||
---@class uv.uv_fs_t: uv.uv_req_t
|
|
||||||
|
|
||||||
---@class ParentNode
|
---@class ParentNode
|
||||||
---@field name string
|
---@field name string
|
||||||
|
|
||||||
---@class BaseNode
|
---@class BaseNode
|
||||||
---@field absolute_path string
|
---@field absolute_path string
|
||||||
---@field executable boolean
|
---@field executable boolean
|
||||||
---@field fs_stat uv.uv_fs_t
|
---@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 name string
|
---@field name string
|
||||||
|
|||||||
@@ -1,136 +1,92 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
|
||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
|
local live_filter = require "nvim-tree.live-filter"
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
|
local utils = require "nvim-tree.utils"
|
||||||
|
local view = require "nvim-tree.view"
|
||||||
|
|
||||||
|
local DecoratorBookmarks = require "nvim-tree.renderer.decorator.bookmarks"
|
||||||
|
local DecoratorCopied = require "nvim-tree.renderer.decorator.copied"
|
||||||
|
local DecoratorCut = require "nvim-tree.renderer.decorator.cut"
|
||||||
|
local DecoratorDiagnostics = require "nvim-tree.renderer.decorator.diagnostics"
|
||||||
|
local DecoratorGit = require "nvim-tree.renderer.decorator.git"
|
||||||
|
local DecoratorModified = require "nvim-tree.renderer.decorator.modified"
|
||||||
|
local DecoratorOpened = require "nvim-tree.renderer.decorator.opened"
|
||||||
|
|
||||||
local git = require "nvim-tree.renderer.components.git"
|
|
||||||
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 modified = require "nvim-tree.renderer.components.modified"
|
|
||||||
local diagnostics = require "nvim-tree.renderer.components.diagnostics"
|
|
||||||
local bookmarks = require "nvim-tree.renderer.components.bookmarks"
|
|
||||||
|
|
||||||
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
local M = {
|
||||||
|
opts = {},
|
||||||
|
decorators = {},
|
||||||
|
picture_map = {
|
||||||
|
jpg = true,
|
||||||
|
jpeg = true,
|
||||||
|
png = true,
|
||||||
|
gif = true,
|
||||||
|
webp = true,
|
||||||
|
jxl = true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
---@class HighlightedString
|
||||||
|
---@field str string
|
||||||
|
---@field hl string[]
|
||||||
|
|
||||||
|
---@class AddHighlightArgs
|
||||||
|
---@field group string[]
|
||||||
|
---@field line number
|
||||||
|
---@field col_start number
|
||||||
|
---@field col_end number
|
||||||
|
|
||||||
|
---@class Builder
|
||||||
|
---@field lines string[] includes icons etc.
|
||||||
|
---@field hl_args AddHighlightArgs[] line highlights
|
||||||
|
---@field signs string[] line signs
|
||||||
|
---@field private root_cwd string absolute path
|
||||||
|
---@field private index number
|
||||||
|
---@field private depth number
|
||||||
|
---@field private combined_groups table<string, boolean> combined group names
|
||||||
|
---@field private markers boolean[] indent markers
|
||||||
local Builder = {}
|
local Builder = {}
|
||||||
Builder.__index = Builder
|
|
||||||
|
|
||||||
local DEFAULT_ROOT_FOLDER_LABEL = ":~:s?$?/..?"
|
---@return Builder
|
||||||
|
function Builder:new()
|
||||||
function Builder.new(root_cwd)
|
local o = {
|
||||||
return setmetatable({
|
root_cwd = core.get_cwd(),
|
||||||
index = 0,
|
index = 0,
|
||||||
depth = 0,
|
depth = 0,
|
||||||
highlights = {},
|
hl_args = {},
|
||||||
|
combined_groups = {},
|
||||||
lines = {},
|
lines = {},
|
||||||
markers = {},
|
markers = {},
|
||||||
signs = {},
|
signs = {},
|
||||||
root_cwd = root_cwd,
|
}
|
||||||
}, Builder)
|
setmetatable(o, self)
|
||||||
|
self.__index = self
|
||||||
|
|
||||||
|
return o
|
||||||
end
|
end
|
||||||
|
|
||||||
function Builder:configure_root_label(root_folder_label)
|
---Insert ranged highlight groups into self.highlights
|
||||||
self.root_folder_label = root_folder_label or DEFAULT_ROOT_FOLDER_LABEL
|
---@private
|
||||||
return self
|
---@param groups string[]
|
||||||
|
---@param start number
|
||||||
|
---@param end_ number|nil
|
||||||
|
function Builder:insert_highlight(groups, start, end_)
|
||||||
|
table.insert(self.hl_args, { groups, self.index, start, end_ or -1 })
|
||||||
end
|
end
|
||||||
|
|
||||||
function Builder:configure_trailing_slash(with_trailing)
|
---@private
|
||||||
self.trailing_slash = with_trailing and "/" or ""
|
function Builder:get_folder_name(node)
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_special_files(special_files)
|
|
||||||
self.special_files = special_files
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_picture_map(picture_map)
|
|
||||||
self.picture_map = picture_map
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_filter(filter, prefix)
|
|
||||||
self.filter_prefix = prefix
|
|
||||||
self.filter = filter
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_opened_file_highlighting(highlight_opened_files)
|
|
||||||
self.highlight_opened_files = highlight_opened_files
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_modified_highlighting(highlight_modified)
|
|
||||||
self.highlight_modified = highlight_modified
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_icon_padding(padding)
|
|
||||||
self.icon_padding = padding or " "
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_git_icons_placement(where)
|
|
||||||
if where ~= "after" and where ~= "before" and where ~= "signcolumn" then
|
|
||||||
where = "before" -- default before
|
|
||||||
end
|
|
||||||
self.git_placement = where
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_diagnostics_icon_placement(where)
|
|
||||||
if where ~= "after" and where ~= "before" and where ~= "signcolumn" then
|
|
||||||
where = "before" -- default before
|
|
||||||
end
|
|
||||||
self.diagnostics_placement = where
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_bookmark_icon_placement(where)
|
|
||||||
if where ~= "after" and where ~= "before" and where ~= "signcolumn" then
|
|
||||||
where = "before" -- default before
|
|
||||||
end
|
|
||||||
self.bookmarks_placement = where
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_modified_placement(where)
|
|
||||||
if where ~= "after" and where ~= "before" and where ~= "signcolumn" then
|
|
||||||
where = "after" -- default after
|
|
||||||
end
|
|
||||||
self.modified_placement = where
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_symlink_destination(show)
|
|
||||||
self.symlink_destination = show
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:configure_group_name_modifier(group_name_modifier)
|
|
||||||
if type(group_name_modifier) == "function" then
|
|
||||||
self.group_name_modifier = group_name_modifier
|
|
||||||
end
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:_insert_highlight(group, start, end_)
|
|
||||||
table.insert(self.highlights, { group, self.index, start, end_ or -1 })
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:_insert_line(line)
|
|
||||||
table.insert(self.lines, line)
|
|
||||||
end
|
|
||||||
|
|
||||||
function Builder:_get_folder_name(node)
|
|
||||||
local name = node.name
|
local name = node.name
|
||||||
local next = node.group_next
|
local next = node.group_next
|
||||||
while next do
|
while next do
|
||||||
name = name .. "/" .. next.name
|
name = string.format("%s/%s", name, next.name)
|
||||||
next = next.group_next
|
next = next.group_next
|
||||||
end
|
end
|
||||||
|
|
||||||
if node.group_next and self.group_name_modifier then
|
if node.group_next and type(M.opts.renderer.group_empty) == "function" then
|
||||||
local new_name = self.group_name_modifier(name)
|
local new_name = M.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
|
||||||
@@ -138,16 +94,13 @@ function Builder:_get_folder_name(node)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return name .. self.trailing_slash
|
return string.format("%s%s", name, M.opts.renderer.add_trailing and "/" or "")
|
||||||
end
|
end
|
||||||
|
|
||||||
---@class HighlightedString
|
---@private
|
||||||
---@field str string
|
|
||||||
---@field hl string[]
|
|
||||||
|
|
||||||
---@param highlighted_strings HighlightedString[]
|
---@param highlighted_strings HighlightedString[]
|
||||||
---@return string
|
---@return string
|
||||||
function Builder:_unwrap_highlighted_strings(highlighted_strings)
|
function Builder:unwrap_highlighted_strings(highlighted_strings)
|
||||||
if not highlighted_strings then
|
if not highlighted_strings then
|
||||||
return ""
|
return ""
|
||||||
end
|
end
|
||||||
@@ -156,21 +109,22 @@ function Builder:_unwrap_highlighted_strings(highlighted_strings)
|
|||||||
for _, v in ipairs(highlighted_strings) do
|
for _, v in ipairs(highlighted_strings) do
|
||||||
if #v.str > 0 then
|
if #v.str > 0 then
|
||||||
if v.hl and type(v.hl) == "table" then
|
if v.hl and type(v.hl) == "table" then
|
||||||
self:_insert_highlight(v.hl, #string, #string + #v.str)
|
self:insert_highlight(v.hl, #string, #string + #v.str)
|
||||||
end
|
end
|
||||||
string = string .. v.str
|
string = string.format("%s%s", string, v.str)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return string
|
return string
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
---@param node table
|
---@param node table
|
||||||
---@return HighlightedString icon
|
---@return HighlightedString icon
|
||||||
---@return HighlightedString name
|
---@return HighlightedString name
|
||||||
function Builder:_build_folder(node)
|
function Builder:build_folder(node)
|
||||||
local has_children = #node.nodes ~= 0 or node.has_children
|
local has_children = #node.nodes ~= 0 or node.has_children
|
||||||
local icon, icon_hl = icons.get_folder_icon(node, has_children)
|
local icon, icon_hl = icons.get_folder_icon(node, has_children)
|
||||||
local foldername = self:_get_folder_name(node)
|
local foldername = self:get_folder_name(node)
|
||||||
|
|
||||||
if #icon > 0 and icon_hl == nil then
|
if #icon > 0 and icon_hl == nil then
|
||||||
if node.open then
|
if node.open then
|
||||||
@@ -181,12 +135,14 @@ function Builder:_build_folder(node)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local foldername_hl = "NvimTreeFolderName"
|
local foldername_hl = "NvimTreeFolderName"
|
||||||
if node.link_to and self.symlink_destination then
|
if node.link_to and M.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, core.get_cwd())
|
local link_to = utils.path_relative(node.link_to, self.root_cwd)
|
||||||
foldername = foldername .. arrow .. link_to
|
foldername = string.format("%s%s%s", foldername, arrow, link_to)
|
||||||
foldername_hl = "NvimTreeSymlinkFolderName"
|
foldername_hl = "NvimTreeSymlinkFolderName"
|
||||||
elseif vim.tbl_contains(self.special_files, node.absolute_path) or vim.tbl_contains(self.special_files, node.name) then
|
elseif
|
||||||
|
vim.tbl_contains(M.opts.renderer.special_files, node.absolute_path) or vim.tbl_contains(M.opts.renderer.special_files, node.name)
|
||||||
|
then
|
||||||
foldername_hl = "NvimTreeSpecialFolderName"
|
foldername_hl = "NvimTreeSpecialFolderName"
|
||||||
elseif node.open then
|
elseif node.open then
|
||||||
foldername_hl = "NvimTreeOpenedFolderName"
|
foldername_hl = "NvimTreeOpenedFolderName"
|
||||||
@@ -197,174 +153,56 @@ function Builder:_build_folder(node)
|
|||||||
return { str = icon, hl = { icon_hl } }, { str = foldername, hl = { foldername_hl } }
|
return { str = icon, hl = { icon_hl } }, { str = foldername, hl = { foldername_hl } }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
---@param node table
|
---@param node table
|
||||||
---@return HighlightedString icon
|
---@return HighlightedString icon
|
||||||
---@return HighlightedString name
|
---@return HighlightedString name
|
||||||
function Builder:_build_symlink(node)
|
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 self.symlink_destination then
|
if M.opts.renderer.symlink_destination then
|
||||||
local link_to = utils.path_relative(node.link_to, core.get_cwd())
|
local link_to = utils.path_relative(node.link_to, self.root_cwd)
|
||||||
symlink_formatted = symlink_formatted .. arrow .. link_to
|
symlink_formatted = string.format("%s%s%s", symlink_formatted, arrow, link_to)
|
||||||
end
|
end
|
||||||
|
|
||||||
return { str = icon, hl = { "NvimTreeSymlinkIcon" } }, { str = symlink_formatted, hl = { "NvimTreeSymlink" } }
|
return { str = icon, hl = { "NvimTreeSymlinkIcon" } }, { str = symlink_formatted, hl = { "NvimTreeSymlink" } }
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param node table
|
---@private
|
||||||
---@return HighlightedString icon
|
|
||||||
function Builder:_build_file_icon(node)
|
|
||||||
local icon, hl_group = icons.get_file_icon(node.name, node.extension)
|
|
||||||
return { str = icon, hl = { hl_group } }
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node table
|
---@param node table
|
||||||
---@return HighlightedString icon
|
---@return HighlightedString icon
|
||||||
---@return HighlightedString name
|
---@return HighlightedString name
|
||||||
function Builder:_build_file(node)
|
function Builder:build_file(node)
|
||||||
local icon = self:_build_file_icon(node)
|
|
||||||
|
|
||||||
local hl
|
local hl
|
||||||
if vim.tbl_contains(self.special_files, node.absolute_path) or vim.tbl_contains(self.special_files, node.name) then
|
if vim.tbl_contains(M.opts.renderer.special_files, node.absolute_path) or vim.tbl_contains(M.opts.renderer.special_files, node.name) then
|
||||||
hl = "NvimTreeSpecialFile"
|
hl = "NvimTreeSpecialFile"
|
||||||
elseif node.executable then
|
elseif node.executable then
|
||||||
hl = "NvimTreeExecFile"
|
hl = "NvimTreeExecFile"
|
||||||
elseif self.picture_map[node.extension] then
|
elseif M.picture_map[node.extension] then
|
||||||
hl = "NvimTreeImageFile"
|
hl = "NvimTreeImageFile"
|
||||||
end
|
end
|
||||||
|
|
||||||
return icon, { str = node.name, hl = { hl } }
|
local icon, hl_group = icons.get_file_icon(node.name, node.extension)
|
||||||
end
|
return { str = icon, hl = { hl_group } }, { str = node.name, hl = { hl } }
|
||||||
|
|
||||||
---@param node table
|
|
||||||
---@return HighlightedString[]|nil icon
|
|
||||||
function Builder:_get_git_icons(node)
|
|
||||||
local git_icons = git.get_icons(node)
|
|
||||||
if git_icons and #git_icons > 0 and self.git_placement == "signcolumn" then
|
|
||||||
table.insert(self.signs, {
|
|
||||||
sign = git_icons[1].hl[1],
|
|
||||||
lnum = self.index + 1,
|
|
||||||
priority = 1,
|
|
||||||
})
|
|
||||||
git_icons = nil
|
|
||||||
end
|
|
||||||
return git_icons
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node table
|
|
||||||
---@return HighlightedString[]|nil icon
|
|
||||||
function Builder:_get_diagnostics_icon(node)
|
|
||||||
local diagnostics_icon = diagnostics.get_icon(node)
|
|
||||||
if diagnostics_icon and self.diagnostics_placement == "signcolumn" then
|
|
||||||
table.insert(self.signs, {
|
|
||||||
sign = diagnostics_icon.hl[1],
|
|
||||||
lnum = self.index + 1,
|
|
||||||
priority = 2,
|
|
||||||
})
|
|
||||||
diagnostics_icon = nil
|
|
||||||
end
|
|
||||||
return diagnostics_icon
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node table
|
|
||||||
---@return HighlightedString|nil icon
|
|
||||||
function Builder:_get_modified_icon(node)
|
|
||||||
local modified_icon = modified.get_icon(node)
|
|
||||||
if modified_icon and self.modified_placement == "signcolumn" then
|
|
||||||
table.insert(self.signs, {
|
|
||||||
sign = modified_icon.hl[1],
|
|
||||||
lnum = self.index + 1,
|
|
||||||
priority = 3,
|
|
||||||
})
|
|
||||||
modified_icon = nil
|
|
||||||
end
|
|
||||||
return modified_icon
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node table
|
|
||||||
---@return HighlightedString[]|nil icon
|
|
||||||
function Builder:_get_bookmark_icon(node)
|
|
||||||
local bookmark_icon = bookmarks.get_icon(node)
|
|
||||||
if bookmark_icon and self.bookmarks_placement == "signcolumn" then
|
|
||||||
table.insert(self.signs, {
|
|
||||||
sign = bookmark_icon.hl[1],
|
|
||||||
lnum = self.index + 1,
|
|
||||||
priority = 4,
|
|
||||||
})
|
|
||||||
bookmark_icon = nil
|
|
||||||
end
|
|
||||||
return bookmark_icon
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node table
|
|
||||||
---@return string|nil icon_hl
|
|
||||||
---@return string|nil name_hl
|
|
||||||
function Builder:_get_highlight_override(node, unloaded_bufnr)
|
|
||||||
local name_hl, icon_hl
|
|
||||||
|
|
||||||
-- git
|
|
||||||
local git_highlight = git.get_highlight(node)
|
|
||||||
if git_highlight then
|
|
||||||
name_hl = git_highlight
|
|
||||||
end
|
|
||||||
|
|
||||||
-- opened file
|
|
||||||
if self.highlight_opened_files and vim.fn.bufloaded(node.absolute_path) > 0 and vim.fn.bufnr(node.absolute_path) ~= unloaded_bufnr then
|
|
||||||
if self.highlight_opened_files == "all" or self.highlight_opened_files == "name" then
|
|
||||||
name_hl = "NvimTreeOpenedFile"
|
|
||||||
end
|
|
||||||
if self.highlight_opened_files == "all" or self.highlight_opened_files == "icon" then
|
|
||||||
icon_hl = "NvimTreeOpenedFileIcon"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-- modified file
|
|
||||||
local modified_highlight = modified.get_highlight(node)
|
|
||||||
if modified_highlight then
|
|
||||||
if self.highlight_modified == "all" or self.highlight_modified == "name" then
|
|
||||||
name_hl = modified_highlight
|
|
||||||
end
|
|
||||||
if self.highlight_modified == "all" or self.highlight_modified == "icon" then
|
|
||||||
icon_hl = modified_highlight
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return icon_hl, name_hl
|
|
||||||
end
|
|
||||||
|
|
||||||
---Append optional highlighting to icon or name.
|
|
||||||
---@param node table
|
|
||||||
---@param get_hl fun(node: table): HL_POSITION, string
|
|
||||||
---@param icon_hl string[] icons to append to
|
|
||||||
---@param name_hl string[] names to append to
|
|
||||||
function Builder:_append_highlight(node, get_hl, icon_hl, name_hl)
|
|
||||||
local pos, hl = get_hl(node)
|
|
||||||
if pos ~= HL_POSITION.none and hl then
|
|
||||||
if pos == HL_POSITION.all or pos == HL_POSITION.icon then
|
|
||||||
table.insert(icon_hl, hl)
|
|
||||||
end
|
|
||||||
if pos == HL_POSITION.all or pos == HL_POSITION.name then
|
|
||||||
table.insert(name_hl, hl)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
---@param indent_markers HighlightedString[]
|
---@param indent_markers HighlightedString[]
|
||||||
---@param arrows HighlightedString[]|nil
|
---@param arrows HighlightedString[]|nil
|
||||||
---@param icon HighlightedString
|
---@param icon HighlightedString
|
||||||
---@param name HighlightedString
|
---@param name HighlightedString
|
||||||
---@param git_icons HighlightedString[]|nil
|
---@param node table
|
||||||
---@param diagnostics_icon HighlightedString|nil
|
|
||||||
---@param modified_icon HighlightedString|nil
|
|
||||||
---@param bookmark_icon HighlightedString|nil
|
|
||||||
---@return HighlightedString[]
|
---@return HighlightedString[]
|
||||||
function Builder:_format_line(indent_markers, arrows, icon, name, git_icons, diagnostics_icon, modified_icon, bookmark_icon)
|
function Builder:format_line(indent_markers, arrows, icon, name, node)
|
||||||
local added_len = 0
|
local added_len = 0
|
||||||
local function add_to_end(t1, t2)
|
local function add_to_end(t1, t2)
|
||||||
|
if not t2 then
|
||||||
|
return
|
||||||
|
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 = self.icon_padding })
|
table.insert(t1, { str = M.opts.renderer.icons.padding })
|
||||||
end
|
end
|
||||||
table.insert(t1, v)
|
table.insert(t1, v)
|
||||||
end
|
end
|
||||||
@@ -379,78 +217,126 @@ function Builder:_format_line(indent_markers, arrows, icon, name, git_icons, dia
|
|||||||
|
|
||||||
local line = { indent_markers, arrows }
|
local line = { indent_markers, arrows }
|
||||||
add_to_end(line, { icon })
|
add_to_end(line, { icon })
|
||||||
if git_icons and self.git_placement == "before" then
|
|
||||||
add_to_end(line, git_icons)
|
for i = #M.decorators, 1, -1 do
|
||||||
end
|
add_to_end(line, M.decorators[i]:icons_before(node))
|
||||||
if modified_icon and self.modified_placement == "before" then
|
|
||||||
add_to_end(line, { modified_icon })
|
|
||||||
end
|
|
||||||
if diagnostics_icon and self.diagnostics_placement == "before" then
|
|
||||||
add_to_end(line, { diagnostics_icon })
|
|
||||||
end
|
|
||||||
if bookmark_icon and self.bookmarks_placement == "before" then
|
|
||||||
add_to_end(line, { bookmark_icon })
|
|
||||||
end
|
end
|
||||||
|
|
||||||
add_to_end(line, { name })
|
add_to_end(line, { name })
|
||||||
|
|
||||||
if git_icons and self.git_placement == "after" then
|
for i = #M.decorators, 1, -1 do
|
||||||
add_to_end(line, git_icons)
|
add_to_end(line, M.decorators[i]:icons_after(node))
|
||||||
end
|
|
||||||
if modified_icon and self.modified_placement == "after" then
|
|
||||||
add_to_end(line, { modified_icon })
|
|
||||||
end
|
|
||||||
if diagnostics_icon and self.diagnostics_placement == "after" then
|
|
||||||
add_to_end(line, { diagnostics_icon })
|
|
||||||
end
|
|
||||||
if bookmark_icon and self.bookmarks_placement == "after" then
|
|
||||||
add_to_end(line, { bookmark_icon })
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return line
|
return line
|
||||||
end
|
end
|
||||||
|
|
||||||
function Builder:_build_line(node, idx, num_children, unloaded_bufnr)
|
---@private
|
||||||
local copy_paste = require "nvim-tree.actions.fs.copy-paste"
|
---@param node Node
|
||||||
|
function Builder:build_signs(node)
|
||||||
|
-- first in priority order
|
||||||
|
local sign_name
|
||||||
|
for _, d in ipairs(M.decorators) do
|
||||||
|
sign_name = d:sign_name(node)
|
||||||
|
if sign_name then
|
||||||
|
self.signs[self.index] = sign_name
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Create a highlight group for groups with later groups overriding previous.
|
||||||
|
---Combined group name is less than the 200 byte limit of highlight group names
|
||||||
|
---@private
|
||||||
|
---@param groups string[] highlight group names
|
||||||
|
---@return string group_name "NvimTreeCombinedHL" .. sha256
|
||||||
|
function Builder:create_combined_group(groups)
|
||||||
|
local combined_name = string.format("NvimTreeCombinedHL%s", vim.fn.sha256(table.concat(groups)))
|
||||||
|
|
||||||
|
-- only create if necessary
|
||||||
|
if not self.combined_groups[combined_name] then
|
||||||
|
self.combined_groups[combined_name] = true
|
||||||
|
local combined_hl = {}
|
||||||
|
|
||||||
|
-- build the highlight, overriding values
|
||||||
|
for _, group in ipairs(groups) do
|
||||||
|
local hl = vim.api.nvim_get_hl(0, { name = group, link = false })
|
||||||
|
combined_hl = vim.tbl_extend("force", combined_hl, hl)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- add highlights to the global namespace
|
||||||
|
vim.api.nvim_set_hl(0, combined_name, combined_hl)
|
||||||
|
|
||||||
|
table.insert(self.combined_groups, combined_name)
|
||||||
|
end
|
||||||
|
|
||||||
|
return combined_name
|
||||||
|
end
|
||||||
|
|
||||||
|
---Calculate highlight group for icon and name. A combined highlight group will be created
|
||||||
|
---when there is more than one highlight.
|
||||||
|
---A highlight group is always calculated and upserted for the case of highlights changing.
|
||||||
|
---@private
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil icon_hl_group
|
||||||
|
---@return string|nil name_hl_group
|
||||||
|
function Builder:add_highlights(node)
|
||||||
|
-- result
|
||||||
|
local icon_hl_group, name_hl_group
|
||||||
|
|
||||||
|
-- calculate all groups
|
||||||
|
local icon_groups = {}
|
||||||
|
local name_groups = {}
|
||||||
|
local d, icon, name
|
||||||
|
for i = #M.decorators, 1, -1 do
|
||||||
|
d = M.decorators[i]
|
||||||
|
icon, name = d:groups_icon_name(node)
|
||||||
|
table.insert(icon_groups, icon)
|
||||||
|
table.insert(name_groups, name)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- one or many icon groups
|
||||||
|
if #icon_groups > 1 then
|
||||||
|
icon_hl_group = self:create_combined_group(icon_groups)
|
||||||
|
else
|
||||||
|
icon_hl_group = icon_groups[1]
|
||||||
|
end
|
||||||
|
|
||||||
|
-- one or many name groups
|
||||||
|
if #name_groups > 1 then
|
||||||
|
name_hl_group = self:create_combined_group(name_groups)
|
||||||
|
else
|
||||||
|
name_hl_group = name_groups[1]
|
||||||
|
end
|
||||||
|
|
||||||
|
return icon_hl_group, name_hl_group
|
||||||
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
|
function Builder:build_line(node, idx, num_children)
|
||||||
-- various components
|
-- various components
|
||||||
local indent_markers = pad.get_indent_markers(self.depth, idx, num_children, node, self.markers)
|
local indent_markers = pad.get_indent_markers(self.depth, idx, num_children, node, self.markers)
|
||||||
local arrows = pad.get_arrows(node)
|
local arrows = pad.get_arrows(node)
|
||||||
|
|
||||||
-- adds icons to signcolumn
|
|
||||||
local bookmark_icon = self:_get_bookmark_icon(node)
|
|
||||||
local git_icons = self:_get_git_icons(node)
|
|
||||||
local modified_icon = self:_get_modified_icon(node)
|
|
||||||
local diagnostics_icon = self:_get_diagnostics_icon(node)
|
|
||||||
|
|
||||||
-- main components
|
-- main components
|
||||||
local is_folder = node.nodes ~= nil
|
local is_folder = node.nodes ~= nil
|
||||||
local is_symlink = node.link_to ~= nil
|
local is_symlink = node.link_to ~= nil
|
||||||
local icon, name
|
local icon, name
|
||||||
if is_folder then
|
if is_folder then
|
||||||
icon, name = self:_build_folder(node)
|
icon, name = self:build_folder(node)
|
||||||
elseif is_symlink then
|
elseif is_symlink then
|
||||||
icon, name = self:_build_symlink(node)
|
icon, name = self:build_symlink(node)
|
||||||
else
|
else
|
||||||
icon, name = self:_build_file(node)
|
icon, name = self:build_file(node)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- highlight override
|
-- highighting
|
||||||
local icon_hl_override, name_hl_override = self:_get_highlight_override(node, unloaded_bufnr)
|
local icon_hl_group, name_hl_group = self:add_highlights(node)
|
||||||
if icon_hl_override then
|
table.insert(icon.hl, icon_hl_group)
|
||||||
icon.hl = { icon_hl_override }
|
table.insert(name.hl, name_hl_group)
|
||||||
end
|
|
||||||
if name_hl_override then
|
|
||||||
name.hl = { name_hl_override }
|
|
||||||
end
|
|
||||||
|
|
||||||
-- extra highighting
|
local line = self:format_line(indent_markers, arrows, icon, name, node)
|
||||||
self:_append_highlight(node, bookmarks.get_highlight, icon.hl, name.hl)
|
table.insert(self.lines, self:unwrap_highlighted_strings(line))
|
||||||
self:_append_highlight(node, diagnostics.get_highlight, icon.hl, name.hl)
|
|
||||||
self:_append_highlight(node, copy_paste.get_highlight, icon.hl, name.hl)
|
|
||||||
|
|
||||||
local line = self:_format_line(indent_markers, arrows, icon, name, git_icons, diagnostics_icon, modified_icon, bookmark_icon)
|
|
||||||
self:_insert_line(self:_unwrap_highlighted_strings(line))
|
|
||||||
|
|
||||||
self.index = self.index + 1
|
self.index = self.index + 1
|
||||||
|
|
||||||
@@ -458,13 +344,14 @@ function Builder:_build_line(node, idx, num_children, unloaded_bufnr)
|
|||||||
|
|
||||||
if node.open then
|
if node.open then
|
||||||
self.depth = self.depth + 1
|
self.depth = self.depth + 1
|
||||||
self:build(node, unloaded_bufnr)
|
self:build_lines(node)
|
||||||
self.depth = self.depth - 1
|
self.depth = self.depth - 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function Builder:_get_nodes_number(nodes)
|
---@private
|
||||||
if not self.filter then
|
function Builder:get_nodes_number(nodes)
|
||||||
|
if not live_filter.filter then
|
||||||
return #nodes
|
return #nodes
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -477,53 +364,87 @@ function Builder:_get_nodes_number(nodes)
|
|||||||
return i
|
return i
|
||||||
end
|
end
|
||||||
|
|
||||||
function Builder:build(tree, unloaded_bufnr)
|
---@private
|
||||||
local num_children = self:_get_nodes_number(tree.nodes)
|
function Builder:build_lines(node)
|
||||||
|
if not node then
|
||||||
|
node = core.get_explorer()
|
||||||
|
end
|
||||||
|
local num_children = self:get_nodes_number(node.nodes)
|
||||||
local idx = 1
|
local idx = 1
|
||||||
for _, node in ipairs(tree.nodes) do
|
for _, n in ipairs(node.nodes) do
|
||||||
if not node.hidden then
|
if not n.hidden then
|
||||||
self:_build_line(node, idx, num_children, unloaded_bufnr)
|
self:build_signs(n)
|
||||||
|
self:build_line(n, idx, num_children)
|
||||||
idx = idx + 1
|
idx = idx + 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return self
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local function format_root_name(root_cwd, root_label)
|
---@private
|
||||||
|
---@param root_label function|string
|
||||||
|
---@return string
|
||||||
|
function Builder:format_root_name(root_label)
|
||||||
if type(root_label) == "function" then
|
if type(root_label) == "function" then
|
||||||
local label = root_label(root_cwd)
|
local label = root_label(self.root_cwd)
|
||||||
if type(label) == "string" then
|
if type(label) == "string" then
|
||||||
return label
|
return label
|
||||||
else
|
|
||||||
root_label = DEFAULT_ROOT_FOLDER_LABEL
|
|
||||||
end
|
end
|
||||||
|
elseif type(root_label) == "string" then
|
||||||
|
return utils.path_remove_trailing(vim.fn.fnamemodify(self.root_cwd, root_label))
|
||||||
end
|
end
|
||||||
return utils.path_remove_trailing(vim.fn.fnamemodify(root_cwd, root_label))
|
return "???"
|
||||||
end
|
end
|
||||||
|
|
||||||
function Builder:build_header(show_header)
|
---@private
|
||||||
if show_header then
|
function Builder:build_header()
|
||||||
local root_name = format_root_name(self.root_cwd, self.root_folder_label)
|
if view.is_root_folder_visible(core.get_cwd()) then
|
||||||
self:_insert_line(root_name)
|
local root_name = self:format_root_name(M.opts.renderer.root_folder_label)
|
||||||
self:_insert_highlight({ "NvimTreeRootFolder" }, 0, string.len(root_name))
|
table.insert(self.lines, root_name)
|
||||||
|
self:insert_highlight({ "NvimTreeRootFolder" }, 0, string.len(root_name))
|
||||||
self.index = 1
|
self.index = 1
|
||||||
end
|
end
|
||||||
|
|
||||||
if self.filter then
|
if live_filter.filter then
|
||||||
local filter_line = self.filter_prefix .. "/" .. self.filter .. "/"
|
local filter_line = string.format("%s/%s/", M.opts.live_filter.prefix, live_filter.filter)
|
||||||
self:_insert_line(filter_line)
|
table.insert(self.lines, filter_line)
|
||||||
local prefix_length = string.len(self.filter_prefix)
|
local prefix_length = string.len(M.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
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Sanitize lines for rendering.
|
||||||
|
---Replace newlines with literal \n
|
||||||
|
---@private
|
||||||
|
function Builder:sanitize_lines()
|
||||||
|
self.lines = vim.tbl_map(function(line)
|
||||||
|
return line and line:gsub("\n", "\\n") or ""
|
||||||
|
end, self.lines)
|
||||||
|
end
|
||||||
|
|
||||||
|
---Build all lines with highlights and signs
|
||||||
|
---@return Builder
|
||||||
|
function Builder:build()
|
||||||
|
self:build_header()
|
||||||
|
self:build_lines()
|
||||||
|
self:sanitize_lines()
|
||||||
return self
|
return self
|
||||||
end
|
end
|
||||||
|
|
||||||
function Builder:unwrap()
|
function Builder.setup(opts)
|
||||||
return self.lines, self.highlights, self.signs
|
M.opts = opts
|
||||||
|
|
||||||
|
-- priority order
|
||||||
|
M.decorators = {
|
||||||
|
DecoratorCut:new(opts),
|
||||||
|
DecoratorCopied:new(opts),
|
||||||
|
DecoratorDiagnostics:new(opts),
|
||||||
|
DecoratorBookmarks:new(opts),
|
||||||
|
DecoratorModified:new(opts),
|
||||||
|
DecoratorOpened:new(opts),
|
||||||
|
DecoratorGit:new(opts),
|
||||||
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
return Builder
|
return Builder
|
||||||
|
|||||||
@@ -1,51 +0,0 @@
|
|||||||
local marks = require "nvim-tree.marks"
|
|
||||||
|
|
||||||
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
|
||||||
|
|
||||||
local M = {
|
|
||||||
ICON = {},
|
|
||||||
hl_pos = HL_POSITION.none,
|
|
||||||
}
|
|
||||||
|
|
||||||
---Bookmark highlight group and position when highlight_bookmark.
|
|
||||||
---@param node table
|
|
||||||
---@return HL_POSITION position none when clipboard empty
|
|
||||||
---@return string|nil group only when node present in clipboard
|
|
||||||
function M.get_highlight(node)
|
|
||||||
if M.hl_pos == HL_POSITION.none then
|
|
||||||
return HL_POSITION.none, nil
|
|
||||||
end
|
|
||||||
|
|
||||||
local mark = marks.get_mark(node)
|
|
||||||
if mark then
|
|
||||||
return M.hl_pos, "NvimTreeBookmarkHL"
|
|
||||||
else
|
|
||||||
return HL_POSITION.none, nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
---bookmark icon if marked
|
|
||||||
---@param node table
|
|
||||||
---@return HighlightedString|nil bookmark icon
|
|
||||||
function M.get_icon(node)
|
|
||||||
if M.config.renderer.icons.show.bookmarks and marks.get_mark(node) then
|
|
||||||
return M.ICON
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config = {
|
|
||||||
renderer = opts.renderer,
|
|
||||||
}
|
|
||||||
|
|
||||||
M.hl_pos = HL_POSITION[opts.renderer.highlight_bookmarks] or HL_POSITION.none
|
|
||||||
|
|
||||||
M.ICON = {
|
|
||||||
str = opts.renderer.icons.glyphs.bookmark,
|
|
||||||
hl = { "NvimTreeBookmark" },
|
|
||||||
}
|
|
||||||
|
|
||||||
vim.fn.sign_define(M.ICON.hl[1], { text = M.ICON.str, texthl = M.ICON.hl[1] })
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -2,18 +2,23 @@ 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 = {
|
||||||
HS_FILE = {},
|
-- highlight strings for the icons
|
||||||
HS_FOLDER = {},
|
HS_ICON = {},
|
||||||
ICON = {},
|
|
||||||
hl_pos = HL_POSITION.none,
|
-- highlight groups for HL
|
||||||
|
HG_FILE = {},
|
||||||
|
HG_FOLDER = {},
|
||||||
|
|
||||||
|
-- position for HL
|
||||||
|
HL_POS = HL_POSITION.none,
|
||||||
}
|
}
|
||||||
|
|
||||||
---Diagnostics text highlight group when highlight_diagnostics.
|
---Diagnostics highlight group and position when highlight_diagnostics.
|
||||||
---@param node table
|
---@param node table
|
||||||
---@return HL_POSITION position none when no status
|
---@return HL_POSITION position none when no status
|
||||||
---@return string|nil group only when status
|
---@return string|nil group only when status
|
||||||
function M.get_highlight(node)
|
function M.get_highlight(node)
|
||||||
if not node or M.hl_pos == HL_POSITION.none then
|
if not node or M.HL_POS == HL_POSITION.none then
|
||||||
return HL_POSITION.none, nil
|
return HL_POSITION.none, nil
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -26,7 +31,7 @@ function M.get_highlight(node)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if group then
|
if group then
|
||||||
return M.hl_pos, group
|
return M.HL_POS, group
|
||||||
else
|
else
|
||||||
return HL_POSITION.none, nil
|
return HL_POSITION.none, nil
|
||||||
end
|
end
|
||||||
@@ -49,40 +54,38 @@ function M.setup(opts)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if opts.diagnostics.enable and opts.renderer.highlight_diagnostics then
|
if opts.diagnostics.enable and opts.renderer.highlight_diagnostics then
|
||||||
-- TODO add a HL_POSITION
|
M.HL_POS = HL_POSITION[opts.renderer.highlight_diagnostics]
|
||||||
-- M.hl_pos = HL_POSITION[opts.renderer.highlight_diagnostics]
|
|
||||||
M.hl_pos = HL_POSITION.name
|
|
||||||
end
|
end
|
||||||
|
|
||||||
M.HS_FILE[vim.diagnostic.severity.ERROR] = "NvimTreeLspDiagnosticsErrorText"
|
M.HG_FILE[vim.diagnostic.severity.ERROR] = "NvimTreeDiagnosticErrorFileHL"
|
||||||
M.HS_FILE[vim.diagnostic.severity.WARN] = "NvimTreeLspDiagnosticsWarningText"
|
M.HG_FILE[vim.diagnostic.severity.WARN] = "NvimTreeDiagnosticWarningFileHL"
|
||||||
M.HS_FILE[vim.diagnostic.severity.INFO] = "NvimTreeLspDiagnosticsInfoText"
|
M.HG_FILE[vim.diagnostic.severity.INFO] = "NvimTreeDiagnosticInfoFileHL"
|
||||||
M.HS_FILE[vim.diagnostic.severity.HINT] = "NvimTreeLspDiagnosticsHintText"
|
M.HG_FILE[vim.diagnostic.severity.HINT] = "NvimTreeDiagnosticHintFileHL"
|
||||||
|
|
||||||
M.HS_FOLDER[vim.diagnostic.severity.ERROR] = "NvimTreeLspDiagnosticsErrorFolderText"
|
M.HG_FOLDER[vim.diagnostic.severity.ERROR] = "NvimTreeDiagnosticErrorFolderHL"
|
||||||
M.HS_FOLDER[vim.diagnostic.severity.WARN] = "NvimTreeLspDiagnosticsWarningFolderText"
|
M.HG_FOLDER[vim.diagnostic.severity.WARN] = "NvimTreeDiagnosticWarningFolderHL"
|
||||||
M.HS_FOLDER[vim.diagnostic.severity.INFO] = "NvimTreeLspDiagnosticsInfoFolderText"
|
M.HG_FOLDER[vim.diagnostic.severity.INFO] = "NvimTreeDiagnosticInfoFolderHL"
|
||||||
M.HS_FOLDER[vim.diagnostic.severity.HINT] = "NvimTreeLspDiagnosticsHintFolderText"
|
M.HG_FOLDER[vim.diagnostic.severity.HINT] = "NvimTreeDiagnosticHintFolderHL"
|
||||||
|
|
||||||
M.ICON[vim.diagnostic.severity.ERROR] = {
|
M.HS_ICON[vim.diagnostic.severity.ERROR] = {
|
||||||
str = M.config.diagnostics.icons.error,
|
str = M.config.diagnostics.icons.error,
|
||||||
hl = { "NvimTreeLspDiagnosticsError" },
|
hl = { "NvimTreeDiagnosticErrorIcon" },
|
||||||
}
|
}
|
||||||
|
|
||||||
M.ICON[vim.diagnostic.severity.WARN] = {
|
M.HS_ICON[vim.diagnostic.severity.WARN] = {
|
||||||
str = M.config.diagnostics.icons.warning,
|
str = M.config.diagnostics.icons.warning,
|
||||||
hl = { "NvimTreeLspDiagnosticsWarning" },
|
hl = { "NvimTreeDiagnosticWarningIcon" },
|
||||||
}
|
}
|
||||||
M.ICON[vim.diagnostic.severity.INFO] = {
|
M.HS_ICON[vim.diagnostic.severity.INFO] = {
|
||||||
str = M.config.diagnostics.icons.info,
|
str = M.config.diagnostics.icons.info,
|
||||||
hl = { "NvimTreeLspDiagnosticsInformation" },
|
hl = { "NvimTreeDiagnosticInfoIcon" },
|
||||||
}
|
}
|
||||||
M.ICON[vim.diagnostic.severity.HINT] = {
|
M.HS_ICON[vim.diagnostic.severity.HINT] = {
|
||||||
str = M.config.diagnostics.icons.hint,
|
str = M.config.diagnostics.icons.hint,
|
||||||
hl = { "NvimTreeLspDiagnosticsHint" },
|
hl = { "NvimTreeDiagnosticHintIcon" },
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, i in ipairs(M.ICON) do
|
for _, i in ipairs(M.HS_ICON) do
|
||||||
vim.fn.sign_define(i.hl[1], { text = i.str, texthl = i.hl[1] })
|
vim.fn.sign_define(i.hl[1], { text = i.str, texthl = i.hl[1] })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -57,9 +57,9 @@ local function show()
|
|||||||
end
|
end
|
||||||
|
|
||||||
M.popup_win = vim.api.nvim_open_win(vim.api.nvim_create_buf(false, false), false, {
|
M.popup_win = vim.api.nvim_open_win(vim.api.nvim_create_buf(false, false), false, {
|
||||||
relative = "cursor",
|
relative = "win",
|
||||||
row = 0,
|
row = 0,
|
||||||
col = 1 - vim.fn.getcursorcharpos()[3],
|
bufpos = { vim.api.nvim_win_get_cursor(0)[1] - 1, 0 },
|
||||||
width = math.min(text_width, vim.o.columns - 2),
|
width = math.min(text_width, vim.o.columns - 2),
|
||||||
height = 1,
|
height = 1,
|
||||||
noautocmd = true,
|
noautocmd = true,
|
||||||
@@ -67,12 +67,19 @@ local function show()
|
|||||||
})
|
})
|
||||||
|
|
||||||
local ns_id = vim.api.nvim_get_namespaces()["NvimTreeHighlights"]
|
local ns_id = vim.api.nvim_get_namespaces()["NvimTreeHighlights"]
|
||||||
local extmarks = vim.api.nvim_buf_get_extmarks(0, ns_id, { line_nr - 1, 0 }, { line_nr - 1, -1 }, { details = 1 })
|
local extmarks = vim.api.nvim_buf_get_extmarks(0, ns_id, { line_nr - 1, 0 }, { line_nr - 1, -1 }, { details = true })
|
||||||
vim.api.nvim_win_call(M.popup_win, function()
|
vim.api.nvim_win_call(M.popup_win, function()
|
||||||
vim.api.nvim_buf_set_lines(0, 0, -1, true, { line })
|
vim.api.nvim_buf_set_lines(0, 0, -1, true, { line })
|
||||||
for _, extmark in ipairs(extmarks) do
|
for _, extmark in ipairs(extmarks) do
|
||||||
local hl = extmark[4]
|
-- nvim 0.10 luadoc is incorrect: vim.api.keyset.get_extmark_item is missing the extmark_id at the start
|
||||||
vim.api.nvim_buf_add_highlight(0, ns_id, hl.hl_group, 0, extmark[3], hl.end_col)
|
|
||||||
|
---@cast extmark table
|
||||||
|
---@type integer
|
||||||
|
local col = extmark[3]
|
||||||
|
---@type vim.api.keyset.extmark_details
|
||||||
|
local details = extmark[4]
|
||||||
|
|
||||||
|
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)
|
||||||
|
|||||||
@@ -1,191 +0,0 @@
|
|||||||
local notify = require "nvim-tree.notify"
|
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
local function build_icons_table(i)
|
|
||||||
local icons = {
|
|
||||||
staged = { str = i.staged, hl = { "NvimTreeGitStaged" }, ord = 1 },
|
|
||||||
unstaged = { str = i.unstaged, hl = { "NvimTreeGitDirty" }, ord = 2 },
|
|
||||||
renamed = { str = i.renamed, hl = { "NvimTreeGitRenamed" }, ord = 3 },
|
|
||||||
deleted = { str = i.deleted, hl = { "NvimTreeGitDeleted" }, ord = 4 },
|
|
||||||
unmerged = { str = i.unmerged, hl = { "NvimTreeGitMerge" }, ord = 5 },
|
|
||||||
untracked = { str = i.untracked, hl = { "NvimTreeGitNew" }, ord = 6 },
|
|
||||||
ignored = { str = i.ignored, hl = { "NvimTreeGitIgnored" }, ord = 7 },
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
["M "] = { icons.staged },
|
|
||||||
[" M"] = { icons.unstaged },
|
|
||||||
["C "] = { icons.staged },
|
|
||||||
[" C"] = { icons.unstaged },
|
|
||||||
["CM"] = { icons.unstaged },
|
|
||||||
[" T"] = { icons.unstaged },
|
|
||||||
["T "] = { icons.staged },
|
|
||||||
["TM"] = { icons.staged, icons.unstaged },
|
|
||||||
["MM"] = { icons.staged, icons.unstaged },
|
|
||||||
["MD"] = { icons.staged },
|
|
||||||
["A "] = { icons.staged },
|
|
||||||
["AD"] = { icons.staged },
|
|
||||||
[" A"] = { icons.untracked },
|
|
||||||
-- not sure about this one
|
|
||||||
["AA"] = { icons.unmerged, icons.untracked },
|
|
||||||
["AU"] = { icons.unmerged, icons.untracked },
|
|
||||||
["AM"] = { icons.staged, icons.unstaged },
|
|
||||||
["??"] = { icons.untracked },
|
|
||||||
["R "] = { icons.renamed },
|
|
||||||
[" R"] = { icons.renamed },
|
|
||||||
["RM"] = { icons.unstaged, icons.renamed },
|
|
||||||
["UU"] = { icons.unmerged },
|
|
||||||
["UD"] = { icons.unmerged },
|
|
||||||
["UA"] = { icons.unmerged },
|
|
||||||
[" D"] = { icons.deleted },
|
|
||||||
["D "] = { icons.deleted },
|
|
||||||
["DA"] = { icons.unstaged },
|
|
||||||
["RD"] = { icons.deleted },
|
|
||||||
["DD"] = { icons.deleted },
|
|
||||||
["DU"] = { icons.deleted, icons.unmerged },
|
|
||||||
["!!"] = { icons.ignored },
|
|
||||||
dirty = { icons.unstaged },
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
local function build_hl_table()
|
|
||||||
local file = {
|
|
||||||
["M "] = "NvimTreeFileStaged",
|
|
||||||
["C "] = "NvimTreeFileStaged",
|
|
||||||
["AA"] = "NvimTreeFileStaged",
|
|
||||||
["AD"] = "NvimTreeFileStaged",
|
|
||||||
["MD"] = "NvimTreeFileStaged",
|
|
||||||
["T "] = "NvimTreeFileStaged",
|
|
||||||
["TT"] = "NvimTreeFileStaged",
|
|
||||||
[" M"] = "NvimTreeFileDirty",
|
|
||||||
["CM"] = "NvimTreeFileDirty",
|
|
||||||
[" C"] = "NvimTreeFileDirty",
|
|
||||||
[" T"] = "NvimTreeFileDirty",
|
|
||||||
["MM"] = "NvimTreeFileDirty",
|
|
||||||
["AM"] = "NvimTreeFileDirty",
|
|
||||||
dirty = "NvimTreeFileDirty",
|
|
||||||
["A "] = "NvimTreeFileStaged",
|
|
||||||
["??"] = "NvimTreeFileNew",
|
|
||||||
["AU"] = "NvimTreeFileMerge",
|
|
||||||
["UU"] = "NvimTreeFileMerge",
|
|
||||||
["UD"] = "NvimTreeFileMerge",
|
|
||||||
["DU"] = "NvimTreeFileMerge",
|
|
||||||
["UA"] = "NvimTreeFileMerge",
|
|
||||||
[" D"] = "NvimTreeFileDeleted",
|
|
||||||
["DD"] = "NvimTreeFileDeleted",
|
|
||||||
["RD"] = "NvimTreeFileDeleted",
|
|
||||||
["D "] = "NvimTreeFileDeleted",
|
|
||||||
["R "] = "NvimTreeFileRenamed",
|
|
||||||
["RM"] = "NvimTreeFileRenamed",
|
|
||||||
[" R"] = "NvimTreeFileRenamed",
|
|
||||||
["!!"] = "NvimTreeFileIgnored",
|
|
||||||
[" A"] = "none",
|
|
||||||
}
|
|
||||||
|
|
||||||
local folder = {}
|
|
||||||
for k, v in pairs(file) do
|
|
||||||
folder[k] = v:gsub("File", "Folder")
|
|
||||||
end
|
|
||||||
|
|
||||||
return file, folder
|
|
||||||
end
|
|
||||||
|
|
||||||
local function nil_() end
|
|
||||||
|
|
||||||
local function warn_status(git_status)
|
|
||||||
notify.warn(string.format("Unrecognized git state '%s'", git_status))
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node table
|
|
||||||
---@return HighlightedString[]|nil
|
|
||||||
local function get_icons_(node)
|
|
||||||
local git_status = explorer_node.get_git_status(node)
|
|
||||||
if git_status == nil then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
local inserted = {}
|
|
||||||
local iconss = {}
|
|
||||||
|
|
||||||
for _, s in pairs(git_status) do
|
|
||||||
local icons = M.git_icons[s]
|
|
||||||
if not icons then
|
|
||||||
if not M.config.highlight_git then
|
|
||||||
warn_status(s)
|
|
||||||
end
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
for _, icon in pairs(icons) do
|
|
||||||
if #icon.str > 0 then
|
|
||||||
if not inserted[icon] then
|
|
||||||
table.insert(iconss, icon)
|
|
||||||
inserted[icon] = true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if #iconss == 0 then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
-- sort icons so it looks slightly better
|
|
||||||
table.sort(iconss, function(a, b)
|
|
||||||
return a.ord < b.ord
|
|
||||||
end)
|
|
||||||
|
|
||||||
return iconss
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup_signs(i)
|
|
||||||
vim.fn.sign_define("NvimTreeGitDirty", { text = i.unstaged, texthl = "NvimTreeGitDirty" })
|
|
||||||
vim.fn.sign_define("NvimTreeGitStaged", { text = i.staged, texthl = "NvimTreeGitStaged" })
|
|
||||||
vim.fn.sign_define("NvimTreeGitMerge", { text = i.unmerged, texthl = "NvimTreeGitMerge" })
|
|
||||||
vim.fn.sign_define("NvimTreeGitRenamed", { text = i.renamed, texthl = "NvimTreeGitRenamed" })
|
|
||||||
vim.fn.sign_define("NvimTreeGitNew", { text = i.untracked, texthl = "NvimTreeGitNew" })
|
|
||||||
vim.fn.sign_define("NvimTreeGitDeleted", { text = i.deleted, texthl = "NvimTreeGitDeleted" })
|
|
||||||
vim.fn.sign_define("NvimTreeGitIgnored", { text = i.ignored, texthl = "NvimTreeGitIgnored" })
|
|
||||||
end
|
|
||||||
|
|
||||||
local function get_highlight_(node)
|
|
||||||
local git_status = explorer_node.get_git_status(node)
|
|
||||||
if git_status == nil then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
if node.nodes then
|
|
||||||
return M.folder_hl[git_status[1]]
|
|
||||||
else
|
|
||||||
return M.file_hl[git_status[1]]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.config = opts.renderer
|
|
||||||
|
|
||||||
M.git_icons = build_icons_table(opts.renderer.icons.glyphs.git)
|
|
||||||
|
|
||||||
M.file_hl, M.folder_hl = build_hl_table()
|
|
||||||
|
|
||||||
if opts.renderer.icons.git_placement == "signcolumn" then
|
|
||||||
M.setup_signs(opts.renderer.icons.glyphs.git)
|
|
||||||
end
|
|
||||||
|
|
||||||
if opts.renderer.icons.show.git then
|
|
||||||
M.get_icons = get_icons_
|
|
||||||
else
|
|
||||||
M.get_icons = nil_
|
|
||||||
end
|
|
||||||
|
|
||||||
if opts.renderer.highlight_git then
|
|
||||||
M.get_highlight = get_highlight_
|
|
||||||
else
|
|
||||||
M.get_highlight = nil_
|
|
||||||
end
|
|
||||||
|
|
||||||
M.git_show_on_open_dirs = opts.git.show_on_open_dirs
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@@ -64,9 +64,14 @@ local function get_file_icon_webdev(fname, extension)
|
|||||||
elseif string.match(extension, "%.(.*)") then
|
elseif string.match(extension, "%.(.*)") then
|
||||||
-- If there are more extensions to the file, try to grab the icon for them recursively
|
-- If there are more extensions to the file, try to grab the icon for them recursively
|
||||||
return get_file_icon_webdev(fname, string.match(extension, "%.(.*)"))
|
return get_file_icon_webdev(fname, string.match(extension, "%.(.*)"))
|
||||||
|
else
|
||||||
|
local devicons_default = M.devicons.get_default_icon()
|
||||||
|
if devicons_default and type(devicons_default.icon) == "string" and type(devicons_default.name) == "string" then
|
||||||
|
return devicons_default.icon, "DevIcon" .. devicons_default.name
|
||||||
else
|
else
|
||||||
return get_file_icon_default()
|
return get_file_icon_default()
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function config_file_icon()
|
local function config_file_icon()
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
local modified = require "nvim-tree.modified"
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
local HIGHLIGHT = "NvimTreeModifiedFile"
|
|
||||||
|
|
||||||
---return modified icon if node is modified, otherwise return empty string
|
|
||||||
---@param node table
|
|
||||||
---@return HighlightedString|nil modified icon
|
|
||||||
function M.get_icon(node)
|
|
||||||
if not modified.is_modified(node) or not M.show_icon then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
return { str = M.icon, hl = { HIGHLIGHT } }
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup_signs()
|
|
||||||
vim.fn.sign_define(HIGHLIGHT, { text = M.icon, texthl = HIGHLIGHT })
|
|
||||||
end
|
|
||||||
|
|
||||||
---@param node table
|
|
||||||
---@return string|nil
|
|
||||||
function M.get_highlight(node)
|
|
||||||
if not modified.is_modified(node) then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
return HIGHLIGHT
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.setup(opts)
|
|
||||||
M.icon = opts.renderer.icons.glyphs.modified
|
|
||||||
M.show_icon = opts.renderer.icons.show.modified
|
|
||||||
|
|
||||||
if opts.renderer.icons.modified_placement == "signcolumn" then
|
|
||||||
M.setup_signs()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
51
lua/nvim-tree/renderer/decorator/bookmarks.lua
Normal file
51
lua/nvim-tree/renderer/decorator/bookmarks.lua
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
local marks = require "nvim-tree.marks"
|
||||||
|
|
||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
|
||||||
|
local Decorator = require "nvim-tree.renderer.decorator"
|
||||||
|
|
||||||
|
---@class DecoratorBookmarks: Decorator
|
||||||
|
---@field icon HighlightedString
|
||||||
|
local DecoratorBookmarks = Decorator:new()
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@return DecoratorBookmarks
|
||||||
|
function DecoratorBookmarks:new(opts)
|
||||||
|
local o = Decorator.new(self, {
|
||||||
|
enabled = true,
|
||||||
|
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,
|
||||||
|
})
|
||||||
|
---@cast o DecoratorBookmarks
|
||||||
|
|
||||||
|
if opts.renderer.icons.show.bookmarks then
|
||||||
|
o.icon = {
|
||||||
|
str = opts.renderer.icons.glyphs.bookmark,
|
||||||
|
hl = { "NvimTreeBookmarkIcon" },
|
||||||
|
}
|
||||||
|
o:define_sign(o.icon)
|
||||||
|
end
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Bookmark icon: renderer.icons.show.bookmarks and node is marked
|
||||||
|
---@param node Node
|
||||||
|
---@return HighlightedString[]|nil icons
|
||||||
|
function DecoratorBookmarks:calculate_icons(node)
|
||||||
|
if marks.get_mark(node) then
|
||||||
|
return { self.icon }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Bookmark highlight: renderer.highlight_bookmarks and node is marked
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil group
|
||||||
|
function DecoratorBookmarks:calculate_highlight(node)
|
||||||
|
if self.hl_pos ~= HL_POSITION.none and marks.get_mark(node) then
|
||||||
|
return "NvimTreeBookmarkHL"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return DecoratorBookmarks
|
||||||
38
lua/nvim-tree/renderer/decorator/copied.lua
Normal file
38
lua/nvim-tree/renderer/decorator/copied.lua
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
local copy_paste
|
||||||
|
|
||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
|
||||||
|
local Decorator = require "nvim-tree.renderer.decorator"
|
||||||
|
|
||||||
|
---@class DecoratorCopied: Decorator
|
||||||
|
---@field enabled boolean
|
||||||
|
---@field icon HighlightedString|nil
|
||||||
|
local DecoratorCopied = Decorator:new()
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@return DecoratorCopied
|
||||||
|
function DecoratorCopied:new(opts)
|
||||||
|
local o = Decorator.new(self, {
|
||||||
|
enabled = true,
|
||||||
|
hl_pos = HL_POSITION[opts.renderer.highlight_clipboard] or HL_POSITION.none,
|
||||||
|
icon_placement = ICON_PLACEMENT.none,
|
||||||
|
})
|
||||||
|
---@cast o DecoratorCopied
|
||||||
|
|
||||||
|
-- cyclic
|
||||||
|
copy_paste = copy_paste or require "nvim-tree.actions.fs.copy-paste"
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Copied highlight: renderer.highlight_clipboard and node is copied
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil group
|
||||||
|
function DecoratorCopied:calculate_highlight(node)
|
||||||
|
if self.hl_pos ~= HL_POSITION.none and copy_paste.is_copied(node) then
|
||||||
|
return "NvimTreeCopiedHL"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return DecoratorCopied
|
||||||
38
lua/nvim-tree/renderer/decorator/cut.lua
Normal file
38
lua/nvim-tree/renderer/decorator/cut.lua
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
local copy_paste
|
||||||
|
|
||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
|
||||||
|
local Decorator = require "nvim-tree.renderer.decorator"
|
||||||
|
|
||||||
|
---@class DecoratorCut: Decorator
|
||||||
|
---@field enabled boolean
|
||||||
|
---@field icon HighlightedString|nil
|
||||||
|
local DecoratorCut = Decorator:new()
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@return DecoratorCut
|
||||||
|
function DecoratorCut:new(opts)
|
||||||
|
local o = Decorator.new(self, {
|
||||||
|
enabled = true,
|
||||||
|
hl_pos = HL_POSITION[opts.renderer.highlight_clipboard] or HL_POSITION.none,
|
||||||
|
icon_placement = ICON_PLACEMENT.none,
|
||||||
|
})
|
||||||
|
---@cast o DecoratorCut
|
||||||
|
|
||||||
|
-- cyclic
|
||||||
|
copy_paste = copy_paste or require "nvim-tree.actions.fs.copy-paste"
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Cut highlight: renderer.highlight_clipboard and node is cut
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil group
|
||||||
|
function DecoratorCut:calculate_highlight(node)
|
||||||
|
if self.hl_pos ~= HL_POSITION.none and copy_paste.is_cut(node) then
|
||||||
|
return "NvimTreeCutHL"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return DecoratorCut
|
||||||
110
lua/nvim-tree/renderer/decorator/diagnostics.lua
Normal file
110
lua/nvim-tree/renderer/decorator/diagnostics.lua
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
local diagnostics = require "nvim-tree.diagnostics"
|
||||||
|
|
||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
|
||||||
|
local Decorator = require "nvim-tree.renderer.decorator"
|
||||||
|
|
||||||
|
-- highlight groups by severity
|
||||||
|
local HG_ICON = {
|
||||||
|
[vim.diagnostic.severity.ERROR] = "NvimTreeDiagnosticErrorIcon",
|
||||||
|
[vim.diagnostic.severity.WARN] = "NvimTreeDiagnosticWarnIcon",
|
||||||
|
[vim.diagnostic.severity.INFO] = "NvimTreeDiagnosticInfoIcon",
|
||||||
|
[vim.diagnostic.severity.HINT] = "NvimTreeDiagnosticHintIcon",
|
||||||
|
}
|
||||||
|
local HG_FILE = {
|
||||||
|
[vim.diagnostic.severity.ERROR] = "NvimTreeDiagnosticErrorFileHL",
|
||||||
|
[vim.diagnostic.severity.WARN] = "NvimTreeDiagnosticWarnFileHL",
|
||||||
|
[vim.diagnostic.severity.INFO] = "NvimTreeDiagnosticInfoFileHL",
|
||||||
|
[vim.diagnostic.severity.HINT] = "NvimTreeDiagnosticHintFileHL",
|
||||||
|
}
|
||||||
|
local HG_FOLDER = {
|
||||||
|
[vim.diagnostic.severity.ERROR] = "NvimTreeDiagnosticErrorFolderHL",
|
||||||
|
[vim.diagnostic.severity.WARN] = "NvimTreeDiagnosticWarnFolderHL",
|
||||||
|
[vim.diagnostic.severity.INFO] = "NvimTreeDiagnosticInfoFolderHL",
|
||||||
|
[vim.diagnostic.severity.HINT] = "NvimTreeDiagnosticHintFolderHL",
|
||||||
|
}
|
||||||
|
-- opts.diagnostics.icons.
|
||||||
|
local ICON_KEYS = {
|
||||||
|
["error"] = vim.diagnostic.severity.ERROR,
|
||||||
|
["warning"] = vim.diagnostic.severity.WARN,
|
||||||
|
["info"] = vim.diagnostic.severity.INFO,
|
||||||
|
["hint"] = vim.diagnostic.severity.HINT,
|
||||||
|
}
|
||||||
|
|
||||||
|
---@class DecoratorDiagnostics: Decorator
|
||||||
|
---@field icons HighlightedString[]
|
||||||
|
local DecoratorDiagnostics = Decorator:new()
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@return DecoratorDiagnostics
|
||||||
|
function DecoratorDiagnostics:new(opts)
|
||||||
|
local o = Decorator.new(self, {
|
||||||
|
enabled = opts.diagnostics.enable,
|
||||||
|
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,
|
||||||
|
})
|
||||||
|
---@cast o DecoratorDiagnostics
|
||||||
|
|
||||||
|
if not o.enabled then
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
if opts.renderer.icons.show.diagnostics then
|
||||||
|
o.icons = {}
|
||||||
|
for name, sev in pairs(ICON_KEYS) do
|
||||||
|
o.icons[sev] = {
|
||||||
|
str = opts.diagnostics.icons[name],
|
||||||
|
hl = { HG_ICON[sev] },
|
||||||
|
}
|
||||||
|
o:define_sign(o.icons[sev])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Diagnostic icon: diagnostics.enable, renderer.icons.show.diagnostics and node has status
|
||||||
|
---@param node Node
|
||||||
|
---@return HighlightedString[]|nil icons
|
||||||
|
function DecoratorDiagnostics:calculate_icons(node)
|
||||||
|
if node and self.enabled and self.icons then
|
||||||
|
local diag_status = diagnostics.get_diag_status(node)
|
||||||
|
local diag_value = diag_status and diag_status.value
|
||||||
|
|
||||||
|
if diag_value then
|
||||||
|
return { self.icons[diag_value] }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Diagnostic highlight: diagnostics.enable, renderer.highlight_diagnostics and node has status
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil group
|
||||||
|
function DecoratorDiagnostics:calculate_highlight(node)
|
||||||
|
if not node or not self.enabled or self.hl_pos == HL_POSITION.none then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
local diag_status = diagnostics.get_diag_status(node)
|
||||||
|
local diag_value = diag_status and diag_status.value
|
||||||
|
|
||||||
|
if not diag_value then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
local group
|
||||||
|
if node.nodes then
|
||||||
|
group = HG_FOLDER[diag_value]
|
||||||
|
else
|
||||||
|
group = HG_FILE[diag_value]
|
||||||
|
end
|
||||||
|
|
||||||
|
if group then
|
||||||
|
return group
|
||||||
|
else
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return DecoratorDiagnostics
|
||||||
221
lua/nvim-tree/renderer/decorator/git.lua
Normal file
221
lua/nvim-tree/renderer/decorator/git.lua
Normal file
@@ -0,0 +1,221 @@
|
|||||||
|
local notify = require "nvim-tree.notify"
|
||||||
|
local explorer_node = require "nvim-tree.explorer.node"
|
||||||
|
|
||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
|
||||||
|
local Decorator = require "nvim-tree.renderer.decorator"
|
||||||
|
|
||||||
|
---@class HighlightedStringGit: HighlightedString
|
||||||
|
---@field ord number decreasing priority
|
||||||
|
|
||||||
|
---@class DecoratorGit: Decorator
|
||||||
|
---@field file_hl table<string, string> by porcelain status e.g. "AM"
|
||||||
|
---@field folder_hl table<string, string> by porcelain status
|
||||||
|
---@field icons_by_status HighlightedStringGit[] by human status
|
||||||
|
---@field icons_by_xy table<string, HighlightedStringGit[]> by porcelain status
|
||||||
|
local DecoratorGit = Decorator:new()
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@return DecoratorGit
|
||||||
|
function DecoratorGit:new(opts)
|
||||||
|
local o = Decorator.new(self, {
|
||||||
|
enabled = opts.git.enable,
|
||||||
|
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,
|
||||||
|
})
|
||||||
|
---@cast o DecoratorGit
|
||||||
|
|
||||||
|
if not o.enabled then
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
if o.hl_pos ~= HL_POSITION.none then
|
||||||
|
o:build_hl_table()
|
||||||
|
end
|
||||||
|
|
||||||
|
if opts.renderer.icons.show.git then
|
||||||
|
o:build_icons_by_status(opts.renderer.icons.glyphs.git)
|
||||||
|
o:build_icons_by_xy(o.icons_by_status)
|
||||||
|
|
||||||
|
for _, icon in pairs(o.icons_by_status) do
|
||||||
|
self:define_sign(icon)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---@param glyphs table<string, string> user glyps
|
||||||
|
function DecoratorGit:build_icons_by_status(glyphs)
|
||||||
|
self.icons_by_status = {
|
||||||
|
staged = { str = glyphs.staged, hl = { "NvimTreeGitStagedIcon" }, ord = 1 },
|
||||||
|
unstaged = { str = glyphs.unstaged, hl = { "NvimTreeGitDirtyIcon" }, ord = 2 },
|
||||||
|
renamed = { str = glyphs.renamed, hl = { "NvimTreeGitRenamedIcon" }, ord = 3 },
|
||||||
|
deleted = { str = glyphs.deleted, hl = { "NvimTreeGitDeletedIcon" }, ord = 4 },
|
||||||
|
unmerged = { str = glyphs.unmerged, hl = { "NvimTreeGitMergeIcon" }, ord = 5 },
|
||||||
|
untracked = { str = glyphs.untracked, hl = { "NvimTreeGitNewIcon" }, ord = 6 },
|
||||||
|
ignored = { str = glyphs.ignored, hl = { "NvimTreeGitIgnoredIcon" }, ord = 7 },
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
---@param icons HighlightedStringGit[]
|
||||||
|
function DecoratorGit:build_icons_by_xy(icons)
|
||||||
|
self.icons_by_xy = {
|
||||||
|
["M "] = { icons.staged },
|
||||||
|
[" M"] = { icons.unstaged },
|
||||||
|
["C "] = { icons.staged },
|
||||||
|
[" C"] = { icons.unstaged },
|
||||||
|
["CM"] = { icons.unstaged },
|
||||||
|
[" T"] = { icons.unstaged },
|
||||||
|
["T "] = { icons.staged },
|
||||||
|
["TM"] = { icons.staged, icons.unstaged },
|
||||||
|
["MM"] = { icons.staged, icons.unstaged },
|
||||||
|
["MD"] = { icons.staged },
|
||||||
|
["A "] = { icons.staged },
|
||||||
|
["AD"] = { icons.staged },
|
||||||
|
[" A"] = { icons.untracked },
|
||||||
|
-- not sure about this one
|
||||||
|
["AA"] = { icons.unmerged, icons.untracked },
|
||||||
|
["AU"] = { icons.unmerged, icons.untracked },
|
||||||
|
["AM"] = { icons.staged, icons.unstaged },
|
||||||
|
["??"] = { icons.untracked },
|
||||||
|
["R "] = { icons.renamed },
|
||||||
|
[" R"] = { icons.renamed },
|
||||||
|
["RM"] = { icons.unstaged, icons.renamed },
|
||||||
|
["UU"] = { icons.unmerged },
|
||||||
|
["UD"] = { icons.unmerged },
|
||||||
|
["UA"] = { icons.unmerged },
|
||||||
|
[" D"] = { icons.deleted },
|
||||||
|
["D "] = { icons.deleted },
|
||||||
|
["DA"] = { icons.unstaged },
|
||||||
|
["RD"] = { icons.deleted },
|
||||||
|
["DD"] = { icons.deleted },
|
||||||
|
["DU"] = { icons.deleted, icons.unmerged },
|
||||||
|
["!!"] = { icons.ignored },
|
||||||
|
dirty = { icons.unstaged },
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
function DecoratorGit:build_hl_table()
|
||||||
|
self.file_hl = {
|
||||||
|
["M "] = "NvimTreeGitFileStagedHL",
|
||||||
|
["C "] = "NvimTreeGitFileStagedHL",
|
||||||
|
["AA"] = "NvimTreeGitFileStagedHL",
|
||||||
|
["AD"] = "NvimTreeGitFileStagedHL",
|
||||||
|
["MD"] = "NvimTreeGitFileStagedHL",
|
||||||
|
["T "] = "NvimTreeGitFileStagedHL",
|
||||||
|
["TT"] = "NvimTreeGitFileStagedHL",
|
||||||
|
[" M"] = "NvimTreeGitFileDirtyHL",
|
||||||
|
["CM"] = "NvimTreeGitFileDirtyHL",
|
||||||
|
[" C"] = "NvimTreeGitFileDirtyHL",
|
||||||
|
[" T"] = "NvimTreeGitFileDirtyHL",
|
||||||
|
["MM"] = "NvimTreeGitFileDirtyHL",
|
||||||
|
["AM"] = "NvimTreeGitFileDirtyHL",
|
||||||
|
dirty = "NvimTreeGitFileDirtyHL",
|
||||||
|
["A "] = "NvimTreeGitFileStagedHL",
|
||||||
|
["??"] = "NvimTreeGitFileNewHL",
|
||||||
|
["AU"] = "NvimTreeGitFileMergeHL",
|
||||||
|
["UU"] = "NvimTreeGitFileMergeHL",
|
||||||
|
["UD"] = "NvimTreeGitFileMergeHL",
|
||||||
|
["DU"] = "NvimTreeGitFileMergeHL",
|
||||||
|
["UA"] = "NvimTreeGitFileMergeHL",
|
||||||
|
[" D"] = "NvimTreeGitFileDeletedHL",
|
||||||
|
["DD"] = "NvimTreeGitFileDeletedHL",
|
||||||
|
["RD"] = "NvimTreeGitFileDeletedHL",
|
||||||
|
["D "] = "NvimTreeGitFileDeletedHL",
|
||||||
|
["R "] = "NvimTreeGitFileRenamedHL",
|
||||||
|
["RM"] = "NvimTreeGitFileRenamedHL",
|
||||||
|
[" R"] = "NvimTreeGitFileRenamedHL",
|
||||||
|
["!!"] = "NvimTreeGitFileIgnoredHL",
|
||||||
|
[" A"] = "none",
|
||||||
|
}
|
||||||
|
|
||||||
|
self.folder_hl = {}
|
||||||
|
for k, v in pairs(self.file_hl) do
|
||||||
|
self.folder_hl[k] = v:gsub("File", "Folder")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Git icons: git.enable, renderer.icons.show.git and node has status
|
||||||
|
---@param node Node
|
||||||
|
---@return HighlightedString[]|nil modified icon
|
||||||
|
function DecoratorGit:calculate_icons(node)
|
||||||
|
if not node or not self.enabled or not self.icons_by_xy then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
local git_status = explorer_node.get_git_status(node)
|
||||||
|
if git_status == nil then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
local inserted = {}
|
||||||
|
local iconss = {}
|
||||||
|
|
||||||
|
for _, s in pairs(git_status) do
|
||||||
|
local icons = self.icons_by_xy[s]
|
||||||
|
if not icons then
|
||||||
|
if self.hl_pos == HL_POSITION.none then
|
||||||
|
notify.warn(string.format("Unrecognized git state '%s'", git_status))
|
||||||
|
end
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
for _, icon in pairs(icons) do
|
||||||
|
if #icon.str > 0 then
|
||||||
|
if not inserted[icon] then
|
||||||
|
table.insert(iconss, icon)
|
||||||
|
inserted[icon] = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if #iconss == 0 then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
-- sort icons so it looks slightly better
|
||||||
|
table.sort(iconss, function(a, b)
|
||||||
|
return a.ord < b.ord
|
||||||
|
end)
|
||||||
|
|
||||||
|
return iconss
|
||||||
|
end
|
||||||
|
|
||||||
|
---Get the first icon as the sign if appropriate
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil name
|
||||||
|
function DecoratorGit:sign_name(node)
|
||||||
|
if self.icon_placement ~= ICON_PLACEMENT.signcolumn then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local icons = self:calculate_icons(node)
|
||||||
|
if icons and #icons > 0 then
|
||||||
|
return icons[1].hl[1]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Git highlight: git.enable, renderer.highlight_git and node has status
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil group
|
||||||
|
function DecoratorGit:calculate_highlight(node)
|
||||||
|
if not node or not self.enabled or self.hl_pos == HL_POSITION.none then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
local git_status = explorer_node.get_git_status(node)
|
||||||
|
if not git_status then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
if node.nodes then
|
||||||
|
return self.folder_hl[git_status[1]]
|
||||||
|
else
|
||||||
|
return self.file_hl[git_status[1]]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return DecoratorGit
|
||||||
122
lua/nvim-tree/renderer/decorator/init.lua
Normal file
122
lua/nvim-tree/renderer/decorator/init.lua
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
|
||||||
|
---@class Decorator
|
||||||
|
---@field protected enabled boolean
|
||||||
|
---@field protected hl_pos HL_POSITION
|
||||||
|
---@field protected icon_placement ICON_PLACEMENT
|
||||||
|
local Decorator = {}
|
||||||
|
|
||||||
|
---@param o Decorator|nil
|
||||||
|
---@return Decorator
|
||||||
|
function Decorator:new(o)
|
||||||
|
o = o or {}
|
||||||
|
setmetatable(o, self)
|
||||||
|
self.__index = self
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Maybe highlight groups
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil icon highlight group
|
||||||
|
---@return string|nil name highlight group
|
||||||
|
function Decorator:groups_icon_name(node)
|
||||||
|
local icon_hl, name_hl
|
||||||
|
|
||||||
|
if self.enabled and self.hl_pos ~= HL_POSITION.none then
|
||||||
|
local hl = self:calculate_highlight(node)
|
||||||
|
|
||||||
|
if self.hl_pos == HL_POSITION.all or self.hl_pos == HL_POSITION.icon then
|
||||||
|
icon_hl = hl
|
||||||
|
end
|
||||||
|
if self.hl_pos == HL_POSITION.all or self.hl_pos == HL_POSITION.name then
|
||||||
|
name_hl = hl
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return icon_hl, name_hl
|
||||||
|
end
|
||||||
|
|
||||||
|
---Maybe icon sign
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil name
|
||||||
|
function Decorator:sign_name(node)
|
||||||
|
if not self.enabled or self.icon_placement ~= ICON_PLACEMENT.signcolumn then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local icons = self:calculate_icons(node)
|
||||||
|
if icons and #icons > 0 then
|
||||||
|
return icons[1].hl[1]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Icons when ICON_PLACEMENT.before
|
||||||
|
---@param node Node
|
||||||
|
---@return HighlightedString[]|nil icons
|
||||||
|
function Decorator:icons_before(node)
|
||||||
|
if not self.enabled or self.icon_placement ~= ICON_PLACEMENT.before then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
return self:calculate_icons(node)
|
||||||
|
end
|
||||||
|
|
||||||
|
---Icons when ICON_PLACEMENT.after
|
||||||
|
---@param node Node
|
||||||
|
---@return HighlightedString[]|nil icons
|
||||||
|
function Decorator:icons_after(node)
|
||||||
|
if not self.enabled or self.icon_placement ~= ICON_PLACEMENT.after then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
return self:calculate_icons(node)
|
||||||
|
end
|
||||||
|
|
||||||
|
---Maybe icons, optionally implemented
|
||||||
|
---@protected
|
||||||
|
---@param _ Node
|
||||||
|
---@return HighlightedString[]|nil icons
|
||||||
|
function Decorator:calculate_icons(_)
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
---Maybe highlight group, optionally implemented
|
||||||
|
---@protected
|
||||||
|
---@param _ Node
|
||||||
|
---@return string|nil group
|
||||||
|
function Decorator:calculate_highlight(_)
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
---Define a sign
|
||||||
|
---@protected
|
||||||
|
---@param icon HighlightedString|nil
|
||||||
|
function Decorator:define_sign(icon)
|
||||||
|
if icon and #icon.hl > 0 then
|
||||||
|
local name = icon.hl[1]
|
||||||
|
|
||||||
|
if not vim.tbl_isempty(vim.fn.sign_getdefined(name)) then
|
||||||
|
vim.fn.sign_undefine(name)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- don't use sign if not defined
|
||||||
|
if #icon.str < 1 then
|
||||||
|
self.icon_placement = ICON_PLACEMENT.none
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
-- byte index of the next character, allowing for wide
|
||||||
|
local bi = vim.fn.byteidx(icon.str, 1)
|
||||||
|
|
||||||
|
-- first (wide) character, falls back to empty string
|
||||||
|
local text = string.sub(icon.str, 1, bi)
|
||||||
|
vim.fn.sign_define(name, {
|
||||||
|
text = text,
|
||||||
|
texthl = name,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return Decorator
|
||||||
61
lua/nvim-tree/renderer/decorator/modified.lua
Normal file
61
lua/nvim-tree/renderer/decorator/modified.lua
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
local buffers = require "nvim-tree.buffers"
|
||||||
|
|
||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
|
||||||
|
local Decorator = require "nvim-tree.renderer.decorator"
|
||||||
|
|
||||||
|
---@class DecoratorModified: Decorator
|
||||||
|
---@field icon HighlightedString|nil
|
||||||
|
local DecoratorModified = Decorator:new()
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@return DecoratorModified
|
||||||
|
function DecoratorModified:new(opts)
|
||||||
|
local o = Decorator.new(self, {
|
||||||
|
enabled = opts.modified.enable,
|
||||||
|
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,
|
||||||
|
})
|
||||||
|
---@cast o DecoratorModified
|
||||||
|
|
||||||
|
if not o.enabled then
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
if opts.renderer.icons.show.modified then
|
||||||
|
o.icon = {
|
||||||
|
str = opts.renderer.icons.glyphs.modified,
|
||||||
|
hl = { "NvimTreeModifiedIcon" },
|
||||||
|
}
|
||||||
|
o:define_sign(o.icon)
|
||||||
|
end
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Modified icon: modified.enable, renderer.icons.show.modified and node is modified
|
||||||
|
---@param node Node
|
||||||
|
---@return HighlightedString[]|nil icons
|
||||||
|
function DecoratorModified:calculate_icons(node)
|
||||||
|
if self.enabled and buffers.is_modified(node) then
|
||||||
|
return { self.icon }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Modified highlight: modified.enable, renderer.highlight_modified and node is modified
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil group
|
||||||
|
function DecoratorModified:calculate_highlight(node)
|
||||||
|
if not self.enabled or self.hl_pos == HL_POSITION.none or not buffers.is_modified(node) then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
if node.nodes then
|
||||||
|
return "NvimTreeModifiedFolderHL"
|
||||||
|
else
|
||||||
|
return "NvimTreeModifiedFileHL"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return DecoratorModified
|
||||||
35
lua/nvim-tree/renderer/decorator/opened.lua
Normal file
35
lua/nvim-tree/renderer/decorator/opened.lua
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
local buffers = require "nvim-tree.buffers"
|
||||||
|
|
||||||
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||||
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
||||||
|
|
||||||
|
local Decorator = require "nvim-tree.renderer.decorator"
|
||||||
|
|
||||||
|
---@class DecoratorOpened: Decorator
|
||||||
|
---@field enabled boolean
|
||||||
|
---@field icon HighlightedString|nil
|
||||||
|
local DecoratorOpened = Decorator:new()
|
||||||
|
|
||||||
|
---@param opts table
|
||||||
|
---@return DecoratorOpened
|
||||||
|
function DecoratorOpened:new(opts)
|
||||||
|
local o = Decorator.new(self, {
|
||||||
|
enabled = true,
|
||||||
|
hl_pos = HL_POSITION[opts.renderer.highlight_opened_files] or HL_POSITION.none,
|
||||||
|
icon_placement = ICON_PLACEMENT.none,
|
||||||
|
})
|
||||||
|
---@cast o DecoratorOpened
|
||||||
|
|
||||||
|
return o
|
||||||
|
end
|
||||||
|
|
||||||
|
---Opened highlight: renderer.highlight_opened_files and node has an open buffer
|
||||||
|
---@param node Node
|
||||||
|
---@return string|nil group
|
||||||
|
function DecoratorOpened:calculate_highlight(node)
|
||||||
|
if self.hl_pos ~= HL_POSITION.none and buffers.is_opened(node) then
|
||||||
|
return "NvimTreeOpenedHL"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return DecoratorOpened
|
||||||
@@ -2,33 +2,41 @@ 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 modified = require "nvim-tree.renderer.components.modified"
|
|
||||||
|
|
||||||
local _padding = require "nvim-tree.renderer.components.padding"
|
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 full_name = require "nvim-tree.renderer.components.full-name"
|
||||||
local git = require "nvim-tree.renderer.components.git"
|
|
||||||
local diagnostics = require "nvim-tree.renderer.components.diagnostics"
|
|
||||||
local Builder = require "nvim-tree.renderer.builder"
|
local Builder = require "nvim-tree.renderer.builder"
|
||||||
local live_filter = require "nvim-tree.live-filter"
|
|
||||||
local bookmarks = require "nvim-tree.renderer.components.bookmarks"
|
|
||||||
|
|
||||||
local M = {
|
local M = {}
|
||||||
last_highlights = {},
|
|
||||||
}
|
|
||||||
|
|
||||||
local SIGN_GROUP = "NvimTreeRendererSigns"
|
local SIGN_GROUP = "NvimTreeRendererSigns"
|
||||||
|
|
||||||
local namespace_id = vim.api.nvim_create_namespace "NvimTreeHighlights"
|
local namespace_id = vim.api.nvim_create_namespace "NvimTreeHighlights"
|
||||||
|
|
||||||
local function _draw(bufnr, lines, hl, signs)
|
---@param bufnr number
|
||||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", true)
|
---@param lines string[]
|
||||||
|
---@param hl_args AddHighlightArgs[]
|
||||||
|
---@param signs string[]
|
||||||
|
local function _draw(bufnr, lines, hl_args, signs)
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value("modifiable", true, { buf = bufnr })
|
||||||
|
else
|
||||||
|
vim.api.nvim_buf_set_option(bufnr, "modifiable", true) ---@diagnostic disable-line: deprecated
|
||||||
|
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)
|
M.render_hl(bufnr, hl_args)
|
||||||
vim.api.nvim_buf_set_option(bufnr, "modifiable", false)
|
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
vim.api.nvim_set_option_value("modifiable", false, { buf = bufnr })
|
||||||
|
else
|
||||||
|
vim.api.nvim_buf_set_option(bufnr, "modifiable", false) ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
vim.fn.sign_unplace(SIGN_GROUP)
|
vim.fn.sign_unplace(SIGN_GROUP)
|
||||||
for _, sign in pairs(signs) do
|
for i, sign_name in pairs(signs) do
|
||||||
vim.fn.sign_place(0, SIGN_GROUP, sign.sign, bufnr, { lnum = sign.lnum, priority = sign.priority })
|
vim.fn.sign_place(0, SIGN_GROUP, sign_name, bufnr, { lnum = i + 1 })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -37,7 +45,7 @@ function M.render_hl(bufnr, hl)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
vim.api.nvim_buf_clear_namespace(bufnr, namespace_id, 0, -1)
|
vim.api.nvim_buf_clear_namespace(bufnr, namespace_id, 0, -1)
|
||||||
for _, data in ipairs(hl or M.last_highlights) 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_id, group, data[2], data[3], data[4])
|
||||||
@@ -46,16 +54,7 @@ function M.render_hl(bufnr, hl)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local picture_map = {
|
function M.draw()
|
||||||
jpg = true,
|
|
||||||
jpeg = true,
|
|
||||||
png = true,
|
|
||||||
gif = true,
|
|
||||||
webp = true,
|
|
||||||
jxl = true,
|
|
||||||
}
|
|
||||||
|
|
||||||
function M.draw(unloaded_bufnr)
|
|
||||||
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 core.get_explorer() or not bufnr or not vim.api.nvim_buf_is_loaded(bufnr) then
|
||||||
return
|
return
|
||||||
@@ -63,34 +62,15 @@ function M.draw(unloaded_bufnr)
|
|||||||
|
|
||||||
local profile = log.profile_start "draw"
|
local profile = log.profile_start "draw"
|
||||||
|
|
||||||
local cursor = vim.api.nvim_win_get_cursor(view.get_winnr())
|
local cursor = vim.api.nvim_win_get_cursor(view.get_winnr() or 0)
|
||||||
icon_component.reset_config()
|
icon_component.reset_config()
|
||||||
|
|
||||||
local lines, hl, signs = Builder.new(core.get_cwd())
|
local builder = Builder:new():build()
|
||||||
:configure_root_label(M.config.root_folder_label)
|
|
||||||
:configure_trailing_slash(M.config.add_trailing)
|
|
||||||
:configure_special_files(M.config.special_files)
|
|
||||||
:configure_picture_map(picture_map)
|
|
||||||
:configure_opened_file_highlighting(M.config.highlight_opened_files)
|
|
||||||
:configure_modified_highlighting(M.config.highlight_modified)
|
|
||||||
:configure_icon_padding(M.config.icons.padding)
|
|
||||||
:configure_git_icons_placement(M.config.icons.git_placement)
|
|
||||||
:configure_diagnostics_icon_placement(M.config.icons.diagnostics_placement)
|
|
||||||
:configure_bookmark_icon_placement(M.config.icons.bookmarks_placement)
|
|
||||||
:configure_modified_placement(M.config.icons.modified_placement)
|
|
||||||
:configure_symlink_destination(M.config.symlink_destination)
|
|
||||||
:configure_filter(live_filter.filter, live_filter.prefix)
|
|
||||||
:configure_group_name_modifier(M.config.group_empty)
|
|
||||||
:build_header(view.is_root_folder_visible(core.get_cwd()))
|
|
||||||
:build(core.get_explorer(), unloaded_bufnr)
|
|
||||||
:unwrap()
|
|
||||||
|
|
||||||
_draw(bufnr, lines, hl, signs)
|
_draw(bufnr, builder.lines, builder.hl_args, builder.signs)
|
||||||
|
|
||||||
M.last_highlights = hl
|
if cursor and #builder.lines >= cursor[1] then
|
||||||
|
vim.api.nvim_win_set_cursor(view.get_winnr() or 0, cursor)
|
||||||
if cursor and #lines >= cursor[1] then
|
|
||||||
vim.api.nvim_win_set_cursor(view.get_winnr(), cursor)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
view.grow_from_content()
|
view.grow_from_content()
|
||||||
@@ -102,15 +82,12 @@ end
|
|||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
M.config = opts.renderer
|
M.config = opts.renderer
|
||||||
M.config.modified = opts.modified
|
|
||||||
|
|
||||||
_padding.setup(opts)
|
_padding.setup(opts)
|
||||||
full_name.setup(opts)
|
full_name.setup(opts)
|
||||||
git.setup(opts)
|
|
||||||
modified.setup(opts)
|
|
||||||
diagnostics.setup(opts)
|
|
||||||
bookmarks.setup(opts)
|
|
||||||
icon_component.setup(opts)
|
icon_component.setup(opts)
|
||||||
|
|
||||||
|
Builder.setup(opts)
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -116,6 +116,28 @@ function M.find_node(nodes, fn)
|
|||||||
return node, i
|
return node, i
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Find the line number of a node.
|
||||||
|
-- Return -1 is node is nil or not found.
|
||||||
|
---@param node Node|nil
|
||||||
|
---@return integer
|
||||||
|
function M.find_node_line(node)
|
||||||
|
if not node then
|
||||||
|
return -1
|
||||||
|
end
|
||||||
|
|
||||||
|
local first_node_line = require("nvim-tree.core").get_nodes_starting_line()
|
||||||
|
local nodes_by_line = M.get_nodes_by_line(require("nvim-tree.core").get_explorer().nodes, first_node_line)
|
||||||
|
local iter_start, iter_end = first_node_line, #nodes_by_line
|
||||||
|
|
||||||
|
for line = iter_start, iter_end, 1 do
|
||||||
|
if nodes_by_line[line] == node then
|
||||||
|
return line
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return -1
|
||||||
|
end
|
||||||
|
|
||||||
-- get the node in the tree state depending on the absolute path of the node
|
-- get the node in the tree state depending on the absolute path of the node
|
||||||
-- (grouped or hidden too)
|
-- (grouped or hidden too)
|
||||||
---@param path string
|
---@param path string
|
||||||
@@ -204,7 +226,14 @@ function M.rename_loaded_buffers(old_path, new_path)
|
|||||||
vim.api.nvim_buf_set_name(buf, new_path .. buf_name:sub(#old_path + 1))
|
vim.api.nvim_buf_set_name(buf, new_path .. buf_name:sub(#old_path + 1))
|
||||||
-- 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
|
||||||
if vim.api.nvim_buf_get_option(buf, "buftype") == "" then
|
local buftype
|
||||||
|
if vim.fn.has "nvim-0.10" == 1 then
|
||||||
|
buftype = vim.api.nvim_get_option_value("buftype", { buf = buf })
|
||||||
|
else
|
||||||
|
buftype = vim.api.nvim_buf_get_option(buf, "buftype") ---@diagnostic disable-line: deprecated
|
||||||
|
end
|
||||||
|
|
||||||
|
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"
|
||||||
@@ -384,6 +413,9 @@ function M.debounce(context, timeout, callback)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local timer = vim.loop.new_timer()
|
local timer = vim.loop.new_timer()
|
||||||
|
if not timer then
|
||||||
|
return
|
||||||
|
end
|
||||||
debouncer.timer = timer
|
debouncer.timer = timer
|
||||||
timer:start(timeout, 0, function()
|
timer:start(timeout, 0, function()
|
||||||
timer_stop_close(timer)
|
timer_stop_close(timer)
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ local function create_buffer(bufnr)
|
|||||||
events._dispatch_tree_attached_post(M.get_bufnr())
|
events._dispatch_tree_attached_post(M.get_bufnr())
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param size number|fun():number
|
---@param size (fun():integer)|integer|string
|
||||||
---@return integer
|
---@return integer
|
||||||
local function get_size(size)
|
local function get_size(size)
|
||||||
if type(size) == "number" then
|
if type(size) == "number" then
|
||||||
@@ -121,10 +121,13 @@ local function get_size(size)
|
|||||||
return math.floor(vim.o.columns * percent_as_decimal)
|
return math.floor(vim.o.columns * percent_as_decimal)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param size number|function|nil
|
---@param size (fun():integer)|integer|nil
|
||||||
local function get_width(size)
|
local function get_width(size)
|
||||||
size = size or M.View.width
|
if size then
|
||||||
return get_size(size)
|
return get_size(size)
|
||||||
|
else
|
||||||
|
return get_size(M.View.width)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local move_tbl = {
|
local move_tbl = {
|
||||||
@@ -140,7 +143,7 @@ local function setup_tabpage(tabpage)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function set_window_options_and_buffer()
|
local function set_window_options_and_buffer()
|
||||||
pcall(vim.cmd, "buffer " .. M.get_bufnr())
|
pcall(vim.api.nvim_command, "buffer " .. M.get_bufnr())
|
||||||
local eventignore = vim.opt.eventignore:get()
|
local eventignore = vim.opt.eventignore:get()
|
||||||
vim.opt.eventignore = "all"
|
vim.opt.eventignore = "all"
|
||||||
for k, v in pairs(M.View.winopts) do
|
for k, v in pairs(M.View.winopts) do
|
||||||
@@ -204,7 +207,7 @@ end
|
|||||||
---@param tabnr integer
|
---@param tabnr integer
|
||||||
local function save_tab_state(tabnr)
|
local function save_tab_state(tabnr)
|
||||||
local tabpage = tabnr or vim.api.nvim_get_current_tabpage()
|
local tabpage = tabnr or vim.api.nvim_get_current_tabpage()
|
||||||
M.View.cursors[tabpage] = vim.api.nvim_win_get_cursor(M.get_winnr(tabpage))
|
M.View.cursors[tabpage] = vim.api.nvim_win_get_cursor(M.get_winnr(tabpage) or 0)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param tabpage integer
|
---@param tabpage integer
|
||||||
@@ -222,8 +225,8 @@ local function close(tabpage)
|
|||||||
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) then
|
if vim.api.nvim_win_is_valid(tree_win or 0) then
|
||||||
vim.api.nvim_win_close(tree_win, true)
|
vim.api.nvim_win_close(tree_win or 0, true)
|
||||||
end
|
end
|
||||||
events._dispatch_on_tree_close()
|
events._dispatch_on_tree_close()
|
||||||
return
|
return
|
||||||
@@ -343,13 +346,9 @@ function M.resize(size)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local new_size = get_width()
|
local new_size = get_width()
|
||||||
vim.api.nvim_win_set_width(M.get_winnr(), new_size)
|
vim.api.nvim_win_set_width(M.get_winnr() or 0, new_size)
|
||||||
|
|
||||||
-- TODO #1545 remove similar check from setup_autocommands
|
|
||||||
-- We let nvim handle sending resize events after 0.9
|
|
||||||
if vim.fn.has "nvim-0.9" == 0 then
|
|
||||||
events._dispatch_on_tree_resize(new_size)
|
events._dispatch_on_tree_resize(new_size)
|
||||||
end
|
|
||||||
|
|
||||||
if not M.View.preserve_window_proportions then
|
if not M.View.preserve_window_proportions then
|
||||||
vim.cmd ":wincmd ="
|
vim.cmd ":wincmd ="
|
||||||
@@ -420,7 +419,7 @@ function M.is_visible(opts)
|
|||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
return M.get_winnr() ~= nil and vim.api.nvim_win_is_valid(M.get_winnr())
|
return M.get_winnr() ~= nil and vim.api.nvim_win_is_valid(M.get_winnr() or 0)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param opts table|nil
|
---@param opts table|nil
|
||||||
@@ -443,7 +442,9 @@ function M.focus(winnr, open_if_closed)
|
|||||||
M.open()
|
M.open()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if wnr then
|
||||||
vim.api.nvim_set_current_win(wnr)
|
vim.api.nvim_set_current_win(wnr)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Retrieve the winid of the open tree.
|
--- Retrieve the winid of the open tree.
|
||||||
@@ -473,7 +474,7 @@ end
|
|||||||
function M.get_winnr(tabpage)
|
function M.get_winnr(tabpage)
|
||||||
tabpage = tabpage or vim.api.nvim_get_current_tabpage()
|
tabpage = tabpage or vim.api.nvim_get_current_tabpage()
|
||||||
local tabinfo = M.View.tabpages[tabpage]
|
local tabinfo = M.View.tabpages[tabpage]
|
||||||
if tabinfo ~= nil then
|
if tabinfo and tabinfo.winnr and vim.api.nvim_win_is_valid(tabinfo.winnr) then
|
||||||
return tabinfo.winnr
|
return tabinfo.winnr
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -541,7 +542,8 @@ end
|
|||||||
|
|
||||||
-- used on ColorScheme event
|
-- used on ColorScheme event
|
||||||
function M.reset_winhl()
|
function M.reset_winhl()
|
||||||
if M.get_winnr() and vim.api.nvim_win_is_valid(M.get_winnr()) then
|
local winnr = M.get_winnr()
|
||||||
|
if winnr and vim.api.nvim_win_is_valid(winnr) then
|
||||||
vim.wo[M.get_winnr()].winhl = M.View.winopts.winhl
|
vim.wo[M.get_winnr()].winhl = M.View.winopts.winhl
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# run after changing nvim-tree.lua DEFAULT_OPTS or keymap.lua M.default_on_attach
|
# run after changing nvim-tree.lua DEFAULT_OPTS or keymap.lua M.default_on_attach
|
||||||
# scrapes and updates nvim-tree-lua.txt
|
# scrapes and updates nvim-tree-lua.txt
|
||||||
# run from repository root: scripts/update-help.sh
|
# run from repository root: scripts/help-update.sh OR make help-update
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -21,6 +21,39 @@ sed -e "s/^ / /" /tmp/DEFAULT_OPTS.2.lua > /tmp/DEFAULT_OPTS.6.lua
|
|||||||
sed -i -e "/${begin}/,/${end}/{ /${begin}/{p; r /tmp/DEFAULT_OPTS.6.lua
|
sed -i -e "/${begin}/,/${end}/{ /${begin}/{p; r /tmp/DEFAULT_OPTS.6.lua
|
||||||
}; /${end}/p; d; }" doc/nvim-tree-lua.txt
|
}; /${end}/p; d; }" doc/nvim-tree-lua.txt
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# opts index
|
||||||
|
#
|
||||||
|
begin="nvim-tree-index-opts\*"
|
||||||
|
end="====================="
|
||||||
|
|
||||||
|
printf '\n' > /tmp/index-opts.txt
|
||||||
|
sed -E "
|
||||||
|
/^ *\*(nvim-tree\..*)\*$/! d ;
|
||||||
|
s/^.*\*(.*)\*/|\1|/g
|
||||||
|
" doc/nvim-tree-lua.txt | sort -d >> /tmp/index-opts.txt
|
||||||
|
printf '\n' >> /tmp/index-opts.txt
|
||||||
|
|
||||||
|
sed -i -e "/${begin}/,/${end}/{ /${begin}/{p; r /tmp/index-opts.txt
|
||||||
|
}; /${end}/p; d; }" doc/nvim-tree-lua.txt
|
||||||
|
|
||||||
|
#
|
||||||
|
# api index
|
||||||
|
#
|
||||||
|
begin="nvim-tree-index-api\*"
|
||||||
|
end="====================="
|
||||||
|
|
||||||
|
printf '\n' > /tmp/index-api.txt
|
||||||
|
sed -E "
|
||||||
|
/\*(nvim-tree-api.*\(\))\*/! d ;
|
||||||
|
s/^.*\*(.*)\*/|\1|/g
|
||||||
|
" doc/nvim-tree-lua.txt | sort -d >> /tmp/index-api.txt
|
||||||
|
printf '\n' >> /tmp/index-api.txt
|
||||||
|
|
||||||
|
sed -i -e "/${begin}/,/${end}/{ /${begin}/{p; r /tmp/index-api.txt
|
||||||
|
}; /${end}/p; d; }" doc/nvim-tree-lua.txt
|
||||||
|
|
||||||
#
|
#
|
||||||
# DEFAULT_ON_ATTACH
|
# DEFAULT_ON_ATTACH
|
||||||
#
|
#
|
||||||
@@ -38,7 +71,7 @@ sed -i -e "/${begin}/,/${end}/{ /${begin}/{p; r /tmp/DEFAULT_ON_ATTACH.lua
|
|||||||
# help human
|
# help human
|
||||||
echo > /tmp/DEFAULT_ON_ATTACH.help
|
echo > /tmp/DEFAULT_ON_ATTACH.help
|
||||||
sed -E "s/^ *vim.keymap.set\('n', '(.*)',.*api(.*),.*opts\('(.*)'.*$/'\`\1\`' '\3' '|nvim-tree-api\2()|'/g
|
sed -E "s/^ *vim.keymap.set\('n', '(.*)',.*api(.*),.*opts\('(.*)'.*$/'\`\1\`' '\3' '|nvim-tree-api\2()|'/g
|
||||||
" /tmp/DEFAULT_ON_ATTACH.lua | while read line
|
" /tmp/DEFAULT_ON_ATTACH.lua | while read -r line
|
||||||
do
|
do
|
||||||
eval "printf '%-17.17s %-26.26s %s\n' ${line}" >> /tmp/DEFAULT_ON_ATTACH.help
|
eval "printf '%-17.17s %-26.26s %s\n' ${line}" >> /tmp/DEFAULT_ON_ATTACH.help
|
||||||
done
|
done
|
||||||
40
scripts/luals-check.sh
Executable file
40
scripts/luals-check.sh
Executable file
@@ -0,0 +1,40 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Performs a lua-language-server check on all files.
|
||||||
|
# luals-out/check.json will be produced on any issues, returning 1.
|
||||||
|
# Outputs only check.json to stdout, all other messages to stderr, to allow jq etc.
|
||||||
|
# $VIMRUNTIME specifies neovim runtime path, defaults to "/usr/share/nvim/runtime" if unset.
|
||||||
|
|
||||||
|
if [ -z "${VIMRUNTIME}" ]; then
|
||||||
|
export VIMRUNTIME="/usr/share/nvim/runtime"
|
||||||
|
fi
|
||||||
|
|
||||||
|
DIR_SRC="lua"
|
||||||
|
DIR_OUT="luals-out"
|
||||||
|
|
||||||
|
# clear output
|
||||||
|
rm -rf "${DIR_OUT}"
|
||||||
|
mkdir "${DIR_OUT}"
|
||||||
|
|
||||||
|
# execute inside lua to prevent luals itself from being checked
|
||||||
|
OUT=$(lua-language-server --check="${DIR_SRC}" --configpath="${PWD}/.luarc.json" --checklevel=Information --logpath="${DIR_OUT}" --loglevel=error)
|
||||||
|
RC=$?
|
||||||
|
|
||||||
|
echo "${OUT}" >&2
|
||||||
|
|
||||||
|
if [ $RC -ne 0 ]; then
|
||||||
|
echo "failed with RC=$RC"
|
||||||
|
exit $RC
|
||||||
|
fi
|
||||||
|
|
||||||
|
# any output is a fail
|
||||||
|
case "${OUT}" in
|
||||||
|
*Diagnosis\ completed,\ no\ problems\ found*)
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
cat "${DIR_OUT}/check.json"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
Reference in New Issue
Block a user