JsonConfig: rename display.binaryPrefix to display.size.binaryPrefix

This commit is contained in:
李通洲
2024-07-22 10:51:27 +08:00
parent 93bdaf10c4
commit 4a6209e0e3
7 changed files with 89 additions and 67 deletions
+2 -2
View File
@@ -83,12 +83,12 @@ __fastfetch_complete_logo_type()
__fastfetch_complete_binary_prefix()
{
local __ff_binary_prefixes=(
local __ff_size_binary_prefixes=(
"iec"
"si"
"jedec"
)
COMPREPLY=($(compgen -W "${__ff_binary_prefixes[*]}" -- "$CURRENT_WORD"))
COMPREPLY=($(compgen -W "${__ff_size_binary_prefixes[*]}" -- "$CURRENT_WORD"))
}
__fastfetch_complete_gl()