File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
lua/nvim-tree/actions/node Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1067,7 +1067,7 @@ Configuration options for icons.
1067
1067
1068
1068
*nvim-tree.renderer.icons.bookmarks_placement*
1069
1069
Bookmark icon placement.
1070
- Type: `string ` , Default: `signcolumn `
1070
+ Type: `string ` , Default: `" signcolumn" `
1071
1071
1072
1072
*nvim-tree.renderer.icons.padding.icon*
1073
1073
Inserted between icon and filename.
@@ -1381,7 +1381,7 @@ delete/wipe. A reload or filesystem event will result in an update.
1381
1381
Type: `boolean ` , Default: `false`
1382
1382
1383
1383
*nvim-tree.filters.no_bookmark*
1384
- Do not show files that are not bookarked .
1384
+ Do not show files that are not bookmarked .
1385
1385
Toggle via | nvim-tree-api.tree.toggle_no_bookmark_filter() | , default `M`
1386
1386
Enabling this is not useful as there is no means yet to persist bookmarks.
1387
1387
Type: `boolean ` , Default: `false`
Original file line number Diff line number Diff line change 57
57
58
58
function M .close_popup ()
59
59
if current_popup ~= nil then
60
- vim .api .nvim_win_close (current_popup .winnr , true )
60
+ if vim .api .nvim_win_is_valid (current_popup .winnr ) then
61
+ vim .api .nvim_win_close (current_popup .winnr , true )
62
+ end
61
63
vim .cmd (" augroup NvimTreeRemoveFilePopup | au! CursorMoved | augroup END" )
62
64
63
65
current_popup = nil
You can’t perform that action at this time.
0 commit comments