Open duarteframos opened 5 years ago
Yes Gaku have just fixed that problem in "Folder settings" add-on.
TE uses the full path of a folder (and a result list) to match with the filter you specified. Therefore *Photos*
will match any folder (and its sub-folders) with its full path containing the word Photos.
Other examples:
C:\Program Files*
matches "C:\Program Files" and "C:\Program Files (x86)" as well as their sub-folders
C:\Program Files
matches "C:\Program Files" only
C:\Program Files;C:\Program Files\*
matches "C:\Program Files" and its sub-folders
I think you want to specify C:\Program Files\
to do the last case above. It is a good idea. However I think we have to consider this enhancement carefully before we go. Since "filter matching" is a core part of TE, any incorrect amendment will cause TE break down.
Matching is from bottom to top. The first match wins.
Yes Gaku have just fixed that problem in "Remember folder view settings" add-on.
No. Try add-ons under "Highlight" and "Application Appearance" categories to do so.
Don't understand what you mean. Please give more details.
@Gaku thanks for all the fixes. @ccfs As usual very informative post, thanks for all the info. Definitely cleared some things up, appreciate it.
*.jpg
and open a folder with a bunch of jpeg files Tablacus would automatically switch to a Folder Setting for images (say with thumbnail view and image detail columns); but I fear this is not practical since a folder may contain any number of files it would be easy to create conflicts. Updated wiki in light on clarifications made here. Feel free to fix any incoherences.
@ccfs Do you happen to know CSS classes for the User Style addon? I manage to find a few IDs and classes here, but some still elude me, like general application background, listview colors and fonts.
Would you mind sharing some settings you may have discovered?
I am not familiar with CSS, so I cannot help. You can look at "index.css" and "options.css" files in TE "script" folder to find some hints.
- Just find out that this feature can be turned on by opting for "Auto" in "Tools > Options > List". But it just works in the same way as that in Windows Explorer. You cannot control it by specifying a filter. It cannot work together with Folder Settings add-on, too.
Nice find, too bad it can't be customized.
Tablacus really needs a tootip system, "Auto" is pretty obscure name. Wonder if it is too hard to implement. I'd love to contribute some tooltips for options and addons.
You can look at "index.css" and "options.css" files in TE "script" folder to find some hints.
I'll definitely look into this thouroughly. Seems to shed some indepth light into classes and UI elements.
Once again thanks for the tips, very helpful
I have a few questions about filters for the Folder Settings Addon, not sure if these are bugs or I don't fully understand how it works. As usual I intent to use any info I gather here to help you improve the wiki.
1. Does the Folder Settings Addon support multiple filter per entry separate by a semicolon
;
like other addons?*Photos\*;
without specifying a following filter breaks the addon and makes it apply everywhere. (Not sure if it is a bug or can be fixed)2. How does one define if subfolders are affected by a filter?
*Photos*
for folders and*Photos*\*
for subfolders but not both. Does leaving a trailing\
like*Photos*\
have any effect different from*Photos*
? Maybe it the trailing\
at the end could be used to define that the filter also propagates to any of its subfolders.3. If a folder matches more than one conflicting entry in the addon filters, which one is used? Does the topmost take precedence, or are filters evaluated from top to bottom and the last one that matches overrides all others?
*Photo*
and one for*Photos*
after it. Which one affects a folder named "Photo", the first one or the last one?4. Can a folder setting also store zoom level/icon size (the one changed with Ctrl+ MouseWheel scroll). It currently seems to be ignored, or at least stored on a per-tab basis.
5. Can CSS be used in folder settings to customize the appearance of a folder?
6. Is it possible to define filetype filters based on folder contents? Say if a folder contains a certain extension like
*Documents*\*.doc
?