We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b4096 commit b5d6ad8Copy full SHA for b5d6ad8
tcl/subcmd.tcl.in
@@ -784,7 +784,11 @@ proc cmdModuleSavelist {show_oneperline show_mtime search_match args} {
784
foreach collfile [findCollections * glob 0 0 1 $find_no_other_target] {
785
# remove target suffix from names to display
786
regsub $suffix$ [file tail $collfile] {} coll
787
- set coll_arr($coll) $collfile
+ # filter stash collections unless called by stashlist or --all opt set
788
+ if {$typedesc ne {named} || ![regexp {stash-\d+} $coll] || [getState\
789
+ hiding_threshold] >= 2} {
790
+ set coll_arr($coll) $collfile
791
+ }
792
}
793
794
# same header msg if no collection at all whether search is made or not
0 commit comments