m-pilia / vim-ccls

Vim plugin for the ccls language server
MIT License
97 stars 7 forks source link

gAdd global var g:yggdrasil_tree_filter #66

Open firman199x opened 7 months ago

firman199x commented 7 months ago

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, } vim-ccls