Search found 3302 matches

by jupe
13 Jan 2026 20:30
Forum: Bug Reports
Topic: SC: filter + Live filter box
Replies: 2
Views: 129

Re: SC: filter + Live filter box

No bug, you need to supply the LF flag, eg ::filter "", 8;, as the help file shows.
by jupe
13 Jan 2026 05:04
Forum: Wishes
Topic: Retain selection when toggling HideFoldersInList
Replies: 2
Views: 189

Re: Retain selection when toggling HideFoldersInList

Great, thanks!

I've wanted this for a long time.
by jupe
12 Jan 2026 05:45
Forum: Wishes
Topic: Retain selection when toggling HideFoldersInList
Replies: 2
Views: 189

Retain selection when toggling HideFoldersInList

If possible do you think that selection can be retained when toggling #496.
by jupe
10 Jan 2026 20:10
Forum: Bug Reports
Topic: x64: Strange return when repeating <crlf>
Replies: 1
Views: 194

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;
by jupe
09 Jan 2026 07:02
Forum: Tips & Tricks, Questions & Answers
Topic: Column question: Lines of text in a text file?
Replies: 11
Views: 447

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...
by jupe
09 Jan 2026 05:42
Forum: Tips & Tricks, Questions & Answers
Topic: COLOR CODED DRIVES IN TREE LIST
Replies: 5
Views: 359

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:\"
by jupe
09 Jan 2026 03:56
Forum: Tips & Tricks, Questions & Answers
Topic: Column question: Lines of text in a text file?
Replies: 11
Views: 447

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...
by jupe
09 Jan 2026 02:52
Forum: Tips & Tricks, Questions & Answers
Topic: Does Not Remember Tree Configuration Upon Startup
Replies: 6
Views: 286

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...
by jupe
08 Jan 2026 22:39
Forum: Tips & Tricks, Questions & Answers
Topic: Does Not Remember Tree Configuration Upon Startup
Replies: 6
Views: 286

Re: Does Not Remember Tree Configuration Upon Startup

Configuration | General | Startup & Exit | Expand in tree
by jupe
08 Jan 2026 22:29
Forum: Tips & Tricks, Questions & Answers
Topic: COLOR CODED DRIVES IN TREE LIST
Replies: 5
Views: 359

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...
by jupe
06 Jan 2026 22:25
Forum: Tips & Tricks, Questions & Answers
Topic: "Default" as Label back color?
Replies: 2
Views: 330

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 Tools | Customize List | Show Folder Row Colors instead of using CF's, the default color is customizable if you don't like it.
by jupe
03 Jan 2026 18:53
Forum: Bug Reports
Topic: Weird icon in tree
Replies: 25
Views: 1055

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.