- In Everything 1.5.0.1281a or later, type in the following search and press ENTER:
/statusbar_format=format
where format can include the following:- $result-count:
- $folder-result-count:
- $file-result-count:
- $selection-count:
- $folder-selection-count:
- $file-selection-count:
- $total-result-size:
- $total-selection-size:
- $total-file-selection-size:
- $total-result-length: (requires length indexing)
- $total-selection-length: (requires length indexing)
To format a number with a thousand separator, use the #TEXT: preprocessor function:
Code: Select all
#TEXT:<#result-count:,#,###> objects
The default format is:
1,234,567 objects
Code: Select all
/statusbar_format=#if:<$result-count:==1,1 object,#TEXT:<$result-count:,#,###> objects>
Examples:
Basic syntax to show usage:
123456 folder(s); 1111111 file(s)
Code: Select all
$folder-result-count: folder(s); $file-result-count: file(s)
Show separate folder and file result counts:
123,456 folders; 1,111,111 files
Code: Select all
/statusbar_format=#if:<$folder-result-count:==1,1 folder,#TEXT:<$folder-result-count:,#,###> folders>; #if:<$file-result-count:==1,1 file,#TEXT:<$file-result-count:,#,###> files
Show total, folder and file result counts:
1,234,567 objects (123,456 folders; 1,111,111 files)
Code: Select all
/statusbar_format=#if:<$result-count:==1,1 object,#TEXT:<$result-count:,#,###> objects> (#if:<$folder-result-count:==1,1 folder,#TEXT:<$folder-result-count:,#,###> folders>; #if:<$file-result-count:==1,1 file,#TEXT:<$file-result-count:,#,###> files>)
To customize the status bar format when a single item is selected:
- In Everything, type in the following search and press ENTER:
/statusbar_selected_item_format=format
where format can include the following:- #is-folder: = returns 1 if the selected item is a folder, 0 otherwise. (added in Everything 1.5.0.1281a)
- $<property-name>: = returns the property value from the property name. (added in Everything 1.5.0.1281a)
- $$ = A single literal $
- $f = Full path and file name
- $n = Name
- $p = Path
- $s = Size
- $e = Extension
- $t = Type
- $m = Date modified
- $c = Date created
- $a = Date accessed
- $b = Attributes
- $d = Date recently changed
- $r = Run count
- $u = Date run
- $l = File list filename
- $o = Results count
To customize the status bar format when multiple items are selected:
- In Everything, type in the following search and press ENTER:
/statusbar_selection_format=format
where format can include the following:- $result-count:
- $folder-result-count:
- $file-result-count:
- $selection-count:
- $folder-selection-count:
- $file-selection-count:
- $total-result-size:
- $total-selection-size:
- $total-file-selection-size:
- $total-result-length: (requires length indexing)
- $total-selection-length: (requires length indexing)
Leave format empty to use the default format.
The default format is:
<$selection-count:,#,###> objects selected
Notes:
$total-result-length: and $total-selection-length: require Length property indexing.
TODO:
variations of statusbar_selected_item_format based on 'Kind' (like Windows Explorer)
add a $selection-kind: property to format based on the 'kind' from the selection.