So I know that the software probably made for this purpose, but I just couldn't resist due to how efficient it is at searching thing. I wanted to use void everything to search my internet history, which I have been keeping for some years (I noticed browsers don't deal well, with searching thousands of entries).
I sorta managed to do make it to recognized the data. Putting the thing in a tab split format:


But I'm having problems to search on the data taking into account results split into different columns. Sorta like you do on browsers, where you can type a little bit of the url, a part of the page title, and the browser shows you the result that contains both patterns.
To give a example of what I wanted, if I type "Chapolin" and "Youtube" I would like the software search and show me all the results containing the words "chapolin" AND "youtube" regardless of which columns those words are (for instance the keyword "youtube" might be in the column fullpath, and "chapolin" is in the column "title".
I want the program to search in column "title" "fullpath" and "comments" to search for any result that contains both these words, regardless of them being in different columns. Preferably, I would like to create some command where I just type, like:
youtube chapolin
And it gives me results taking this into account. I played a little and managed this command, such as:
<title|fullpath|comment>:
<title|fullpath|comment>:bgm

Which does work, but once you add more words or spaces, the thing starts to fall apart. And then you have to add something:
<title|fullpath|comment>:bgm <title|fullpath|comment>:copper

I just wanted to be able to type something "bgp copper", and the program detect both patterns as in the image above, but without all that code. I read about something about functions regex (which I think is what would be needed here, but I just couldn't make sense of the code). Putting in pretty simple terms, I would like this result:
<title|fullpath|comment>:bgm <title|fullpath|comment>:copper
But just typing:
bgm copper
Sorry to bother. Thanks for any help. And thanks for having developed such an amazing piece of software. Void Everything, along autohotkey and few other great softwares are the sorta thing that keeps me into Windows
Update:
Okay I think the code is something among this lines:
<title|fullpath|comment>:$param:

But still doesn't work with multiple words
