Skip to content

Commit a5bdd3f

Browse files
authored
Merge branch 'master' into ci-lua-language-server
2 parents fb2b799 + db796fc commit a5bdd3f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
lint:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- uses: leafo/gh-actions-lua@v10
2121
with:
@@ -31,7 +31,7 @@ jobs:
3131
style:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535

3636
- name: stylua
3737
uses: JohnnyMorganz/stylua-action@v3

doc/nvim-tree-lua.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ via |nvim-tree.on_attach| e.g. >
232232

233233
Opens the tree. See |nvim-tree-api.tree.open()|
234234

235-
Calls: `api.tree.open({ path = "<arg>" })`
235+
Calls: `api.tree.open({ path = "<args>" })`
236236

237237
*:NvimTreeClose*
238238

@@ -244,13 +244,13 @@ via |nvim-tree.on_attach| e.g. >
244244

245245
Open or close the tree. See |nvim-tree-api.tree.toggle()|
246246

247-
Calls: `api.tree.toggle({ path = "<arg>" })`
247+
Calls: `api.tree.toggle({ path = "<args>", find_file = false, update_root = false, focus = true, })`
248248

249249
*:NvimTreeFocus*
250250

251251
Open the tree if it is closed, and then focus on the tree.
252252

253-
See |nvim-tree-api.tree.toggle()|
253+
See |nvim-tree-api.tree.focus()|
254254

255255
Calls: `api.tree.focus()`
256256

@@ -272,7 +272,7 @@ via |nvim-tree.on_attach| e.g. >
272272

273273
See |nvim-tree-api.tree.find_file()|
274274

275-
Calls: `api.tree.find_file { open = true, update_root = <bang> }`
275+
Calls: `api.tree.find_file({ update_root = <bang>, open = true, focus = true, })`
276276

277277
*:NvimTreeFindFileToggle*
278278

@@ -284,7 +284,7 @@ via |nvim-tree.on_attach| e.g. >
284284

285285
See |nvim-tree-api.tree.toggle()|
286286

287-
Calls: `api.tree.toggle { find_file = true, focus = true, path = "<arg>", update_root = <bang> }`
287+
Calls: `api.tree.toggle({ path = "<args>", update_root = <bang>, find_file = true, focus = true, })`
288288

289289
*:NvimTreeClipboard*
290290

0 commit comments

Comments
 (0)