feat: Option for excluding buffers from the window picker. (#401)

This commit is contained in:
Sindre T. Strøm
2021-05-27 09:19:10 +02:00
committed by GitHub
parent 1499360359
commit 23935ff003
4 changed files with 47 additions and 0 deletions

View File

@@ -267,6 +267,20 @@ window from which you last opened NvimTree.
A string of chars used as identifiers by the window picker.
`"ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"` by default.
|g:nvim_tree_window_picker_exclude| *g:nvim_tree_window_picker_exclude*
Dictionary of buffer option names mapped to a list of option values that
indicates to the window picker that the buffer's window should not be
selectable. The default table is
>
{
filetype = {
"packer",
"qf"
}
}
<
==============================================================================
INFORMATIONS *nvim-tree-info*