vim-ccls icon indicating copy to clipboard operation
vim-ccls copied to clipboard

gAdd global var g:yggdrasil_tree_filter

Open firman199x opened this issue 10 months ago • 0 comments

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

firman199x avatar Mar 30 '24 09:03 firman199x