How to limit tag list at adding new tag?

I have hundreds of tags in my TW. A big list is displayed when I add new tag.

Is there a way to limit to a certain number of tags which are displayed (e.g. 8)?

I find the answer by myself

edit $:/core/macros/tag-picker in this line:

nonSystemTagsFilter="[tags[]!is[system]search:title<userInput>sort[]]" systemTagsFilter="[tags[]is[system]search:title<userInput>sort[]]"

to

nonSystemTagsFilter="[tags[]!is[system]search:title<userInput>sort[]limit[2]]" systemTagsFilter="[tags[]is[system]search:title<userInput>sort[]limit[2]]">
1 Like

Another way to address this would be to make the dropdown contents scrollable with a fixed max-height, by changing this line:

<div class="tc-block-dropdown tc-block-tags-dropdown">

to this:

<div class="tc-block-dropdown tc-block-tags-dropdown" style="max-height:10em;overflow:auto;">
3 Likes

Another way is to use Auto Complete plugin from @Maurycy .

Here you can create category tags or any set of tags to just see them!

2 Likes