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.
10671067
10681068 *nvim-tree.renderer.icons.bookmarks_placement*
10691069 Bookmark icon placement.
1070- Type: `string ` , Default: `signcolumn `
1070+ Type: `string ` , Default: `" signcolumn" `
10711071
10721072 *nvim-tree.renderer.icons.padding.icon*
10731073 Inserted between icon and filename.
@@ -1381,7 +1381,7 @@ delete/wipe. A reload or filesystem event will result in an update.
13811381 Type: `boolean ` , Default: `false`
13821382
13831383*nvim-tree.filters.no_bookmark*
1384- Do not show files that are not bookarked .
1384+ Do not show files that are not bookmarked .
13851385Toggle via | nvim-tree-api.tree.toggle_no_bookmark_filter() | , default `M`
13861386Enabling this is not useful as there is no means yet to persist bookmarks.
13871387 Type: `boolean ` , Default: `false`
Original file line number Diff line number Diff line change 5757
5858function M .close_popup ()
5959 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
6163 vim .cmd (" augroup NvimTreeRemoveFilePopup | au! CursorMoved | augroup END" )
6264
6365 current_popup = nil
You can’t perform that action at this time.
0 commit comments