Is the Vim (9.1) tag search slow for you too? This only happens with huge projects that have many PHP vendor dependencies, which can occur quickly with PHP. How do you handle it? Does Vim understand multiple tag files? Can it be multi-threaded somehow?

#vim #vim9 #ctag #ctags #UniversalCtags #PHP

Splitting the tag files into project and vendor ones and including both as tag files increased performance enormously!

The amount of data is the same, but it's somehow ten times faster. Before, it took about ten to fifteen seconds to `tselect` something; now, it takes less than one second.

```vim
set tags=./tags;,./vendor.tags;
```

#vim #ctags #UniversalCtags #php