vim-ccls
vim-ccls copied to clipboard
gAdd global var g:yggdrasil_tree_filter
This is string variable that store the regex for excluding item from yggdrasil-tree.
Example below is to always exclude all item from std:: library and Qt internal classes.
{
"firman199x/vim-ccls",
init = function()
vim.g.yggdrasil_tree_filter = 'Q[A-Z].\|std::.'
end,
}