Allow searching with `_` for mod entries
SiverDX opened this issue ยท 4 comments
This is because you're not actually searching mod ids, you're searching mod names, which have spaces.
I think that's not actually working, if you want to match things with spaces you can do @create @enchantment @industry
to match all the words but no spaces, or use a regex search like @/create enchantment industry/
, to actually match the spaces, which isn't necessary in most cases. Do be noted that using regex is less performant, but it is a solution for pattern matching searches.