Search found 205 matches

by jaywalker32
31 Oct 2020 21:25
Forum: Tips & Tricks, Questions & Answers
Topic: Problem with Quick Search query parsing
Replies: 9
Views: 2546

Re: Problem with Quick Search query parsing

Tested and it works perfectly now.

Thank you! This makes it so much easier now! :biggrin:
by jaywalker32
30 Oct 2020 12:47
Forum: Tips & Tricks, Questions & Answers
Topic: Problem with Quick Search query parsing
Replies: 9
Views: 2546

Re: Problem with Quick Search query parsing

I see. But why was it decided that it is "not useful in this context" originally? Brackets are pretty essential in boolean search patterns if you want to combine OR and AND eg: (A OR B) AND C Can't the literal brackets be escaped while leaving the bracket functionality as it was previously...
by jaywalker32
30 Oct 2020 08:44
Forum: Tips & Tricks, Questions & Answers
Topic: Problem with Quick Search query parsing
Replies: 9
Views: 2546

Re: Problem with Quick Search query parsing

Yes. Identical. I managed to quickly reproduce on my work pc as follows: 1. 2 files named: Project A.txt , Project B.txt 2. Tag first one with "pending" 3. Tag second one with "done" 4. F3 with :tags:pending or name:*Project* /t 5. F3 with :(tags:pending or name:*Project*) /t Ste...
by jaywalker32
29 Oct 2020 15:28
Forum: Tips & Tricks, Questions & Answers
Topic: Problem with Quick Search query parsing
Replies: 9
Views: 2546

Re: Problem with Quick Search query parsing

Yes, I just tried on the latest beta and it's still like that. As soon as I add the brackets, it doesn't return any results (I removed the additional criteria to narrow down the issue): Query: :tags:wallhaven OR name:*wallhaven* /t/? Parsed: tags:"wallhaven" OR name:"*wallhaven*"...
by jaywalker32
30 May 2020 13:46
Forum: Wishes
Topic: Live Filter Box - even more useful
Replies: 3
Views: 1061

Re: Live Filter Box - even more useful

+1 for this :tup:

There's already a sort of history for the live filter, since you can click on the icon to get the previous search.
Would be nice to have more history entries.
by jaywalker32
20 Apr 2020 20:55
Forum: Tips & Tricks, Questions & Answers
Topic: Problem with Quick Search query parsing
Replies: 9
Views: 2546

Re: Problem with Quick Search query parsing

Anyone have any idea on this? I want to make a query with OR and AND for which I need to use brackets, but it seems brackets don't work in quicksearch. What is the correct way to do it? Eg: works :tags:wallpaper OR name:*wallpaper* AND lbl:Red /t doesn't work :(tags:wallpaper OR name:*wallpaper*) AN...
by jaywalker32
28 Mar 2020 08:30
Forum: Tips & Tricks, Questions & Answers
Topic: Problem with Quick Search query parsing
Replies: 9
Views: 2546

Problem with Quick Search query parsing

Why does these two queries parse as the same, but only the second one returns any results? Is it something to do with the HardParentheses option? How do I toggle it? Query: :(name:*wallhaven*) /t/? Parsed: name:"*wallhaven*" Search: Quick Search Mode: Boolean SmartBooleanQueryParsing: Yes ...
by jaywalker32
09 Mar 2020 05:56
Forum: Tips & Tricks, Questions & Answers
Topic: encryption
Replies: 5
Views: 3029

Re: encryption

I use this small script to quickly encrypt list of files or folders, using gpg (https://gnupg.org/download/index.html) Any folders are added to a zip file first before encrypting. foreach($file, <selitems |>){ if(exists($file) == 2){ //if folder, add to zip first zip_add(gpc($file, "base")...
by jaywalker32
06 Mar 2020 12:18
Forum: Tips & Tricks, Questions & Answers
Topic: Is the easiest way to script downloading a file from the net Paste Clipboard as Item?
Replies: 2
Views: 2014

Re: Is the easiest way to script downloading a file from the net Paste Clipboard as Item?

You can download a file from the net using the download command:

eg:

Code: Select all

download "https://www.xyplorer.com/images/XY1950FP.png", "download.png";
Don't know about downloading it into the clipboard, but I suppose you can then use the copy command to copy it to the clipboard.
by jaywalker32
04 Mar 2020 07:37
Forum: Tips & Tricks, Questions & Answers
Topic: Launching Apps with a Press of a Button?
Replies: 2
Views: 1578

Re: Launching Apps with a Press of a Button?

In a multi-line script all lines apart from the first line have to be indented by at least one space.

Code: Select all

help("idh_scripting.htm#idh_scripting_multi");
by jaywalker32
08 Feb 2020 18:13
Forum: Bug Reports
Topic: Thumbnail generation takes over other tabs
Replies: 4
Views: 1040

Re: Thumbnail generation takes over other tabs

Tested and working.

Thanks! :tup:
by jaywalker32
08 Feb 2020 09:29
Forum: Bug Reports
Topic: Thumbnail generation takes over other tabs
Replies: 4
Views: 1040

Re: Thumbnail generation takes over other tabs

Even without multi-threading, I think it's possible to simply cancel the thumbnail generation if focus is lost from the pane/tab instead of the disruptive way it currently changes any newly navigated tab to the image folder with thumbnail generation in-progress. Which I don't think is the intended w...
by jaywalker32
07 Feb 2020 07:21
Forum: Bug Reports
Topic: Thumbnail generation takes over other tabs
Replies: 4
Views: 1040

Thumbnail generation takes over other tabs

Whenever I am generating thumbnails for a folder with a lot of images, if I switch to another tab or to the other pane, then the new tab/pane's location gets set to the folder for which the thumbnails are being generated. To reproduce: - Open a folder with a lot of image files in details mode. - Cha...
by jaywalker32
01 Jan 2020 09:16
Forum: Tips & Tricks, Questions & Answers
Topic: Easy open for a Paper Folder
Replies: 6
Views: 1837

Re: Easy open for a Paper Folder

I use this Custom File Association to open paper folders (within the /Data/Paper path) with just a double-click.

Code: Select all

"Paper Folder Files|:paper"<xypaper>\*.txt>goto "paper:".replacelist(<curitem>,"<xypaper>\,.txt",,",");
by jaywalker32
13 Dec 2019 05:57
Forum: Tips & Tricks, Questions & Answers
Topic: How to get Ctrl+Mousewheel font adjustment without mouse?
Replies: 0
Views: 3265

How to get Ctrl+Mousewheel font adjustment without mouse?

Is there a way to get the various ctrl+mousewheel functions without a mouse? I am on a laptop with a trackpad and am unable to do fine tuning of the font size, tree spacing etc.