::filter "", 8;, as the help file shows.Search found 3302 matches
- 13 Jan 2026 20:30
- Forum: Bug Reports
- Topic: SC: filter + Live filter box
- Replies: 2
- Views: 127
Re: SC: filter + Live filter box
No bug, you need to supply the LF flag, eg
- 13 Jan 2026 05:04
- Forum: Wishes
- Topic: Retain selection when toggling HideFoldersInList
- Replies: 2
- Views: 185
Re: Retain selection when toggling HideFoldersInList
Great, thanks!
I've wanted this for a long time.
I've wanted this for a long time.
- 12 Jan 2026 05:45
- Forum: Wishes
- Topic: Retain selection when toggling HideFoldersInList
- Replies: 2
- Views: 185
Retain selection when toggling HideFoldersInList
If possible do you think that selection can be retained when toggling #496.
- 10 Jan 2026 20:10
- Forum: Bug Reports
- Topic: x64: Strange return when repeating <crlf>
- Replies: 1
- Views: 191
x64: Strange return when repeating <crlf>
I have noticed that in x64 when repeating <crlf> if the value is between 5 and 21, strange things happen to the output, here is a quick repro.
Code: Select all
$i = 4; while ($i++ < 21) { $s .= <crlf $i>; } text $s;- 09 Jan 2026 07:02
- Forum: Tips & Tricks, Questions & Answers
- Topic: Column question: Lines of text in a text file?
- Replies: 11
- Views: 443
Re: Column question: Lines of text in a text file?
Yeah UTF-16BE without BOM are pretty rare though, I guess if you didn't mind slowing down the script slightly, something like this should work in those edge cases too, $r = filetype(<cc_item>) == "Binary" ? 1201 : ""; $c = readfile(<cc_item>, 3:=$r); if ($c) { $c = replace($c, <c...
- 09 Jan 2026 05:42
- Forum: Tips & Tricks, Questions & Answers
- Topic: COLOR CODED DRIVES IN TREE LIST
- Replies: 5
- Views: 354
Re: COLOR CODED DRIVES IN TREE LIST
Yes color filters are one of the other various ways I previously alluded to but didn't bother mentioning because I didn't think it was easier than my previous suggestion, but if you wanted to go that route instead you could use a pattern such as this
T:name: "C:\"- 09 Jan 2026 03:56
- Forum: Tips & Tricks, Questions & Answers
- Topic: Column question: Lines of text in a text file?
- Replies: 11
- Views: 443
Re: Column question: Lines of text in a text file?
You could alternatively do it like this natively without the exe, I'd assume it would be faster. $c = readfile(<cc_item>); if ($c) { $c = replace($c, <crlf>, <lf>); $c = replace($c, <lf>, chr(13)); $c = gettoken($c, "count", chr(13),, 4); return "$c Lns."; } @highend: that exe se...
- 09 Jan 2026 02:52
- Forum: Tips & Tricks, Questions & Answers
- Topic: Does Not Remember Tree Configuration Upon Startup
- Replies: 6
- Views: 282
Re: Does Not Remember Tree Configuration Upon Startup
Are you loading it via a shortcut lnk or similar? you may be loading it pointing to the C: in the shortcut. Or you may have locked the tree ? Tools | Customize Tree | Lock Tree Or you may have Mini Tree enabled ? View | Mini Tree there are a lot of variables, a screenshot might help, you may want di...
- 08 Jan 2026 22:39
- Forum: Tips & Tricks, Questions & Answers
- Topic: Does Not Remember Tree Configuration Upon Startup
- Replies: 6
- Views: 282
Re: Does Not Remember Tree Configuration Upon Startup
Configuration | General | Startup & Exit | Expand in tree
- 08 Jan 2026 22:29
- Forum: Tips & Tricks, Questions & Answers
- Topic: COLOR CODED DRIVES IN TREE LIST
- Replies: 5
- Views: 354
Re: COLOR CODED DRIVES IN TREE LIST
This can be done in various ways, here are a couple of the easiest, If you want only the drive colored, select it in the tree and:
Favorites | Set Highlight Color...
or if you want the drive and all its items colored
Favorites | Set Box Color...
Favorites | Set Highlight Color...
or if you want the drive and all its items colored
Favorites | Set Box Color...
- 08 Jan 2026 05:14
- Forum: Bug Reports
- Topic: Puzzled by bitness
- Replies: 1
- Views: 225
- 07 Jan 2026 23:30
- Forum: Tips & Tricks, Questions & Answers
- Topic: 2 Thumbnail cache files for same image folder and thumb size
- Replies: 17
- Views: 677
Re: 2 Thumbnail cache files for same image folder and thumb size
Are both hashes in XYThumbs.txt ?
- 06 Jan 2026 22:25
- Forum: Tips & Tricks, Questions & Answers
- Topic: "Default" as Label back color?
- Replies: 2
- Views: 324
Re: "Default" as Label back color?
You can already do this, just hold Shift when clicking the Back Color... button in config with the label selected.
But I'd actually recommend you to check out
But I'd actually recommend you to check out
Tools | Customize List | Show Folder Row Colors instead of using CF's, the default color is customizable if you don't like it.- 04 Jan 2026 04:34
- Forum: Tips & Tricks, Questions & Answers
- Topic: Is there a way to search for files with a particular tag and no other tags?
- Replies: 2
- Views: 504
Re: Is there a way to search for files with a particular tag and no other tags?
Something like this should work:, eg:
prop:#Tags: "YOUR_TAG"- 03 Jan 2026 18:53
- Forum: Bug Reports
- Topic: Weird icon in tree
- Replies: 25
- Views: 1043
Re: Weird icon in tree
Well it should be easy to spot that D94235 color in
Tools | List Management | Color Filters anyway, to me it looks like it is an exact match for the default overlong filenames filter, so I'd guess it is that, unless you reused that exact color for a custom filter.
XYplorer Beta Club