statusbar_format - used when there's no selection.
statusbar_selected_item_format - used when there's a single item selected.
statusbar_selection_format - used when there's multiple items selected.
To customize the status bar format:
- 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)
- $o = formatted result count.
- $x = formatted selection count.
- $y = formatted total result size.
- $z = formatted total selection size.
- $match-case:
- $match-diacritics:
- $match-path:
- $match-whole-words:
- $match-prefix:
- $match-suffix:
- $ignore-punctuation:
- $ignore-white-space:
- $match-regex:
- $is-omit: (a result is omitted)
- $is-temp-omit: (a result is temporarily omitted)
- $is-dupe: (an active find dupe command)
- $is-paused: (index updates paused)
- $is-stopped: (index updates stopped)
- $is-admin: (running as admin)
- $is-read-only: (database is in read-only mode)
- $is-safe-mode: (started in safe mode)
To format a number with a thousand separator, use the #TEXT: preprocessor function:
Code: Select all
<text:$result-count:,"#,###"> items
The default format is:
Code: Select all
/statusbar_format=<if:$result-count:==1,"1 item",<text:$result-count:,"#,###">" items">
1,234,567 items
1 item
0 items
Basic syntax to show usage:
Code: Select all
$folder-result-count: folder(s); $file-result-count: file(s)
123456 folder(s); 1111111 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 items (123,456 folders; 1,111,111 files)
Code: Select all
/statusbar_format=#if:<$result-count:==1,1 item,#TEXT:<$result-count:,#,###> items> (#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 = formatted results count.
- $x = formatted selection count.
- $y = formatted total result size.
- $z = formatted total selection size.
The default format is:
Code: Select all
statusbar_selected_item_format=$o items | Size: $s | Date Modified: $m | Path: $p
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)
- $o = formatted results count.
- $x = formatted selection count.
- $y = formatted total result size.
- $z = formatted total selection size.
Leave format empty to use the default format.
The default format is:
Code: Select all
statusbar_selection_format=<text:$result-count:,#,###> items | <text:$selection-count:,#,###> items 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.