1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00

style(scoop-completions): Format scoop-completions scripts with topiary-nushell (#1061)

This commit is contained in:
ziboh 2025-02-28 20:48:52 +08:00 committed by GitHub
parent a519391358
commit 698e240647
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,22 +6,22 @@
# list of supported architecture
def scoopArches [] {
[ "32bit", "64bit" ]
["32bit" "64bit"]
}
# list of all installed apps
def scoopInstalledApps [] {
let localAppDir = if ('SCOOP' in $env) {
[$env.SCOOP, 'apps'] | path join
[$env.SCOOP 'apps'] | path join
} else {
[$env.USERPROFILE, 'scoop', 'apps'] | path join
[$env.USERPROFILE 'scoop' 'apps'] | path join
}
let localApps = (ls $localAppDir | get name | path basename)
let globalAppDir = if ('SCOOP_GLOBAL' in $env) {
[$env.SCOOP_GLOBAL, 'apps'] | path join
[$env.SCOOP_GLOBAL 'apps'] | path join
} else {
[$env.ProgramData, 'scoop', 'apps'] | path join
[$env.ProgramData 'scoop' 'apps'] | path join
}
let globalApps = if ($globalAppDir | path exists) { ls $globalAppDir | get name | path basename }
@ -36,16 +36,16 @@ def scoopInstalledAppsWithStar [] {
# list of all manifests from all buckets
def scoopAllApps [] {
let bucketsDir = if ('SCOOP' in $env) {
[ $env.SCOOP, 'buckets' ] | path join
[$env.SCOOP 'buckets'] | path join
} else {
[ $env.USERPROFILE, 'scoop', 'buckets' ] | path join
[$env.USERPROFILE 'scoop' 'buckets'] | path join
}
(ls -s $bucketsDir | get name) | each {|bucket| ls ([$bucketsDir, $bucket, 'bucket'] | path join ) | get name | path parse | where extension == json | get stem } | flatten | uniq
(ls -s $bucketsDir | get name) | each {|bucket| ls ([$bucketsDir $bucket 'bucket'] | path join) | get name | path parse | where extension == json | get stem } | flatten | uniq
}
# list of all apps that are not installed
def scoopAvailableApps [] {
let all = (scoopAllApps)
let all = (scoopAllApps)
let installed = (scoopInstalledApps)
$all | where $it not-in $installed
@ -54,77 +54,77 @@ def scoopAvailableApps [] {
# list of all config options
def scoopConfigs [] {
[
'7ZIPEXTRACT_USE_EXTERNAL',
'MSIEXTRACT_USE_LESSMSI',
'NO_JUNCTIONS',
'SCOOP_REPO',
'SCOOP_BRANCH',
'proxy',
'default_architecture',
'debug',
'force_update',
'show_update_log',
'manifest_review',
'shim',
'rootPath',
'globalPath',
'cachePath',
'gh_token',
'virustotal_api_key',
'cat_style',
'ignore_running_processes',
'private_hosts',
'aria2-enabled',
'aria2-warning-enabled',
'aria2-retry-wait',
'aria2-split',
'aria2-max-connection-per-server',
'aria2-min-split-size',
'aria2-options',
'7ZIPEXTRACT_USE_EXTERNAL'
'MSIEXTRACT_USE_LESSMSI'
'NO_JUNCTIONS'
'SCOOP_REPO'
'SCOOP_BRANCH'
'proxy'
'default_architecture'
'debug'
'force_update'
'show_update_log'
'manifest_review'
'shim'
'rootPath'
'globalPath'
'cachePath'
'gh_token'
'virustotal_api_key'
'cat_style'
'ignore_running_processes'
'private_hosts'
'aria2-enabled'
'aria2-warning-enabled'
'aria2-retry-wait'
'aria2-split'
'aria2-max-connection-per-server'
'aria2-min-split-size'
'aria2-options'
]
}
# boolean as strings
def scoopBooleans [] {
["'true'", "'false'"]
["'true'" "'false'"]
}
def scoopRepos [] {
[
'https://github.com/ScoopInstaller/Scoop',
'https://github.com/ScoopInstaller/Scoop'
]
}
def scoopBranches [] {
['master', 'develop']
['master' 'develop']
}
def scoopShimBuilds [] {
[ 'kiennq', 'scoopcs', '71']
['kiennq' 'scoopcs' '71']
}
def scoopCommands [] {
let libexecDir = if ('SCOOP' in $env) {
[ $env.SCOOP, 'apps', 'scoop', 'current', 'libexec' ] | path join
[$env.SCOOP 'apps' 'scoop' 'current' 'libexec'] | path join
} else {
[ $env.USERPROFILE, 'scoop', 'apps', 'scoop', 'current', 'libexec' ] | path join
[$env.USERPROFILE 'scoop' 'apps' 'scoop' 'current' 'libexec'] | path join
}
let commands = (
ls $libexecDir
| each {|command|
[
[value, description];
[
# eg. scoop-help.ps1 -> help
($command.name | path parse | get stem |str substring 6..),
# second line is starts with '# Summary: '
# eg. '# Summary: Install apps' -> 'Install apps'
(open $command.name | lines | skip 1 | first | str substring 11..)
]
]
}
| flatten
ls $libexecDir
| each {|command|
[
[value description];
[
# eg. scoop-help.ps1 -> help
($command.name | path parse | get stem | str substring 6..)
# second line is starts with '# Summary: '
# eg. '# Summary: Install apps' -> 'Install apps'
(open $command.name | lines | skip 1 | first | str substring 11..)
]
]
}
| flatten
)
$commands
}
@ -134,15 +134,15 @@ def scoopAliases [] {
}
def batStyles [] {
[ 'default', 'auto', 'full', 'plain', 'changes', 'header', 'header-filename', 'header-filesize', 'grid', 'rule', 'numbers', 'snip' ]
['default' 'auto' 'full' 'plain' 'changes' 'header' 'header-filename' 'header-filesize' 'grid' 'rule' 'numbers' 'snip']
}
def scoopShims [] {
let localShimDir = if ('SCOOP' in $env) { [ $env.SCOOP, 'shims' ] | path join } else if (scoop config root_path | path exists) { scoop config root_path } else { [ $env.USERPROFILE, 'scoop', 'shims' ] | path join }
let localShims = if ($localShimDir | path exists) { ls $localShimDir | get name | path parse | select stem extension | where extension == shim | get stem } else { [] }
let localShimDir = if ('SCOOP' in $env) { [$env.SCOOP 'shims'] | path join } else if (scoop config root_path | path exists) { scoop config root_path } else { [$env.USERPROFILE 'scoop' 'shims'] | path join }
let localShims = if ($localShimDir | path exists) { ls $localShimDir | get name | path parse | select stem extension | where extension == shim | get stem } else { [] }
let globalShimDir = if ('SCOOP_GLOBAL' in $env) { [ $env.SCOOP_GLOBAL, 'shims' ] | path join } else if (scoop config global_path | path exists) { scoop config global_path } else { [ $env.ProgramData, 'scoop', 'shims' ] | path join }
let globalShims = if ($globalShimDir | path exists) { ls $globalShimDir | get name | path parse | select stem extension | where extension == shim | get stem } else { [] }
let globalShimDir = if ('SCOOP_GLOBAL' in $env) { [$env.SCOOP_GLOBAL 'shims'] | path join } else if (scoop config global_path | path exists) { scoop config global_path } else { [$env.ProgramData 'scoop' 'shims'] | path join }
let globalShims = if ($globalShimDir | path exists) { ls $globalShimDir | get name | path parse | select stem extension | where extension == shim | get stem } else { [] }
$localShims | append $globalShims | uniq | sort
}
@ -153,9 +153,9 @@ def scoopShims [] {
# Windows command line installer
export extern "scoop" [
alias?: string@scoopCommands # available scoop commands and aliases
--help(-h) # Show help for this command.
--version(-v) # Show current scoop and added buckets versions
alias?: string@scoopCommands # available scoop commands and aliases
--help (-h) # Show help for this command.
--version (-v) # Show current scoop and added buckets versions
]
################################################################
@ -165,7 +165,7 @@ export extern "scoop" [
# Lists all installed apps, or the apps matching the supplied query.
export extern "scoop list" [
query?: string@scoopInstalledApps # string that will be matched
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -175,9 +175,9 @@ export extern "scoop list" [
# Uninstall specified application(s).
export extern "scoop uninstall" [
...app: string@scoopInstalledApps # app that will be uninstalled
--help(-h) # Show help for this command.
--global(-g) # Uninstall a globally installed application(s).
--purge(-p) # Persisted data will be removed. Normally when application is being uninstalled, the data defined in persist property/manually persisted are kept.
--help (-h) # Show help for this command.
--global (-g) # Uninstall a globally installed application(s).
--purge (-p) # Persisted data will be removed. Normally when application is being uninstalled, the data defined in persist property/manually persisted are kept.
]
################################################################
@ -187,10 +187,10 @@ export extern "scoop uninstall" [
# Perform cleanup on specified installed application(s) by removing old/not actively used versions.
export extern "scoop cleanup" [
...app: string@scoopInstalledAppsWithStar # app that will be cleaned
--help(-h) # Show help for this command.
--all(-a) # Cleanup all apps (alternative to '*')
--global(-g) # Perform cleanup on globally installed application(s). (Include them if '*' is used)
--cache(-k) # Remove outdated download cache. This will keep only the latest version cached.
--help (-h) # Show help for this command.
--all (-a) # Cleanup all apps (alternative to '*')
--global (-g) # Perform cleanup on globally installed application(s). (Include them if '*' is used)
--cache (-k) # Remove outdated download cache. This will keep only the latest version cached.
]
################################################################
@ -200,8 +200,8 @@ export extern "scoop cleanup" [
# Display information about an application.
export extern "scoop info" [
app: string@scoopAllApps # app that will be questioned
--verbose(-v) # Show full paths and URLs
--help(-h) # Show help for this command.
--verbose (-v) # Show full paths and URLs
--help (-h) # Show help for this command.
]
################################################################
@ -211,14 +211,14 @@ export extern "scoop info" [
# Update installed application(s), or scoop itself.
export extern "scoop update" [
...app: string@scoopInstalledAppsWithStar # which apps
--help(-h) # Show help for this command.
--force(-f) # Force update even when there is not a newer version.
--global(-g) # Update a globally installed application(s).
--independent(-i) # Do not install dependencies automatically.
--no-cache(-k) # Do not use the download cache.
--skip(-s) # Skip hash validation (use with caution!).
--quiet(-q) # Hide extraneous messages.
--all(-a) # Update all apps (alternative to '*')
--help (-h) # Show help for this command.
--force (-f) # Force update even when there is not a newer version.
--global (-g) # Update a globally installed application(s).
--independent (-i) # Do not install dependencies automatically.
--no-cache (-k) # Do not use the download cache.
--skip (-s) # Skip hash validation (use with caution!).
--quiet (-q) # Hide extraneous messages.
--all (-a) # Update all apps (alternative to '*')
]
################################################################
@ -228,13 +228,13 @@ export extern "scoop update" [
# Install specific application(s).
export extern "scoop install" [
...app: string@scoopAvailableApps # which apps
--arch(-a): string@scoopArches # Use the specified architecture, if the application's manifest supports it.
--help(-h) # Show help for this command.
--global(-g) # Install the application(s) globally.
--independent(-i) # Do not install dependencies automatically.
--no-cache(-k) # Do not use the download cache.
--skip(-s) # Skip hash validation (use with caution!).
--no-update-scoop(-u) # Don't update Scoop before installing if it's outdated
--arch (-a): string@scoopArches # Use the specified architecture, if the application's manifest supports it.
--help (-h) # Show help for this command.
--global (-g) # Install the application(s) globally.
--independent (-i) # Do not install dependencies automatically.
--no-cache (-k) # Do not use the download cache.
--skip (-s) # Skip hash validation (use with caution!).
--no-update-scoop (-u) # Don't update Scoop before installing if it's outdated
]
################################################################
@ -243,8 +243,8 @@ export extern "scoop install" [
# Show status and check for new app versions.
export extern "scoop status" [
--help(-h) # Show help for this command.
--local(-l) # Checks the status for only the locally installed apps, and disables remote fetching/checking for Scoop and buckets
--help (-h) # Show help for this command.
--local (-l) # Checks the status for only the locally installed apps, and disables remote fetching/checking for Scoop and buckets
]
################################################################
@ -253,7 +253,7 @@ export extern "scoop status" [
# Show help for scoop
export extern "scoop help" [
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
command?: string@scoopCommands # Show help for the specified command
]
@ -264,19 +264,19 @@ export extern "scoop help" [
# Add, remove or list Scoop aliases
export extern "scoop alias" [
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
# add an alias
export extern "scoop alias add" [
name: string # name of the alias
command: string # scoop command
description: string # description of the alias
name: string # name of the alias
command: string # scoop command
description: string # description of the alias
]
# list all aliases
export extern "scoop alias list" [
--verbose(-v) # Show alias description and table headers (works only for 'list')
--verbose (-v) # Show alias description and table headers (works only for 'list')
]
# remove an alias
@ -284,50 +284,47 @@ export extern "scoop alias rm" [
...name: string@scoopAliases # alias that will be removed
]
################################################################
# scoop shim
################################################################
# Manipulate Scoop shims
export extern "scoop shim" [
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
# add a custom shim
export extern "scoop shim add" [
shim_name: string # name of the shim
command_path: path # path to executable
...cmd_args # additional command arguments
--global(-g) # Manipulate global shim(s)
shim_name: string # name of the shim
command_path: path # path to executable
...cmd_args # additional command arguments
--global (-g) # Manipulate global shim(s)
]
# remove shims (CAUTION: this could remove shims added by an app manifest)
export extern "scoop shim rm" [
...shim_name: string@scoopShims # shim that will be removed
--global(-g) # Manipulate global shim(s)
...shim_name: string@scoopShims # shim that will be removed
--global (-g) # Manipulate global shim(s)
]
# list all shims or matching shims
export extern "scoop shim list" [
pattern?: string # list only matching shims
--global(-g) # Manipulate global shim(s)
pattern?: string # list only matching shims
--global (-g) # Manipulate global shim(s)
]
# show a shim's information
export extern "scoop shim info" [
shim_name: string@scoopShims # shim info to retrieve
--global(-g) # Manipulate global shim(s)
shim_name: string@scoopShims # shim info to retrieve
--global (-g) # Manipulate global shim(s)
]
# alternate a shim's target source
export extern "scoop shim alter" [
shim_name: string@scoopShims # shim that will be alternated
--global(-g) # Manipulate global shim(s)
shim_name: string@scoopShims # shim that will be alternated
--global (-g) # Manipulate global shim(s)
]
################################################################
# scoop which
################################################################
@ -335,7 +332,7 @@ export extern "scoop shim alter" [
# Locate the path to a shim/executable that was installed with Scoop (similar to 'which' on Linux)
export extern "scoop which" [
command: string # executable name with .exe
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -345,7 +342,7 @@ export extern "scoop which" [
# Show content of specified manifest.
export extern "scoop cat" [
app: string@scoopAllApps # app that will be shown
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -354,7 +351,7 @@ export extern "scoop cat" [
# Performs a series of diagnostic tests to try to identify things that may cause problems with Scoop.
export extern "scoop checkup" [
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -364,7 +361,7 @@ export extern "scoop checkup" [
# Opens the app homepage
export extern "scoop home" [
app: string@scoopAllApps # app that will be shown
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -373,7 +370,7 @@ export extern "scoop home" [
# Get or set configuration values
export extern "scoop config" [
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
# External 7zip (from path) will be used for archives extraction.
@ -523,8 +520,8 @@ export extern "scoop config rm" [
# Hold an app to disable updates
export extern "scoop hold" [
app: string@scoopInstalledApps # app that will be hold back
--global(-g) # Hold globally installed apps
--help(-h) # Show help for this command.
--global (-g) # Hold globally installed apps
--help (-h) # Show help for this command.
]
################################################################
@ -534,8 +531,8 @@ export extern "scoop hold" [
# Unhold an app to enable updates
export extern "scoop unhold" [
app: string@scoopInstalledApps # app that will be unhold back
--global(-g) # Unhold globally installed apps
--help(-h) # Show help for this command.
--global (-g) # Unhold globally installed apps
--help (-h) # Show help for this command.
]
################################################################
@ -544,9 +541,9 @@ export extern "scoop unhold" [
# List dependencies for an app, in the order they'll be installed
export extern "scoop depends" [
app: string@scoopAllApps # app in question
--arch(-a): string@scoopArches # Use the specified architecture, if the application's manifest supports it.
--help(-h) # Show help for this command.
app: string@scoopAllApps # app in question
--arch (-a): string@scoopArches # Use the specified architecture, if the application's manifest supports it.
--help (-h) # Show help for this command.
]
################################################################
@ -555,8 +552,8 @@ export extern "scoop depends" [
# Exports installed apps, buckets (and optionally configs) in JSON format
export extern "scoop export" [
--config(-c) # Export the Scoop configuration file too
--help(-h) # Show help for this command.
--config (-c) # Export the Scoop configuration file too
--help (-h) # Show help for this command.
]
################################################################
@ -566,7 +563,7 @@ export extern "scoop export" [
# Imports apps, buckets and configs from a Scoopfile in JSON format
export extern "scoop import" [
file: path # path to Scoopfile
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -576,8 +573,8 @@ export extern "scoop import" [
# Reset an app to resolve conflicts
export extern "scoop reset" [
app: string@scoopInstalledAppsWithStar # app that will be reset
--all(-a) # Reset all apps. (alternative to '*')
--help(-h) # Show help for this command.
--all (-a) # Reset all apps. (alternative to '*')
--help (-h) # Show help for this command.
]
################################################################
@ -587,7 +584,7 @@ export extern "scoop reset" [
# Returns the path to the specified app
export extern "scoop prefix" [
app: string@scoopInstalledApps # app in question
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -597,7 +594,7 @@ export extern "scoop prefix" [
# Create a custom app manifest
export extern "scoop create" [
url: string # url of manifest
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -607,7 +604,7 @@ export extern "scoop create" [
# Search available apps
export extern "scoop search" [
query?: string # Show app names that match the query
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -616,19 +613,19 @@ export extern "scoop search" [
# Show the download cache
export extern "scoop cache" [
...?apps: string@scoopInstalledAppsWithStar # apps in question
--help(-h) # Show help for this command.
...apps: string@scoopInstalledAppsWithStar # apps in question
--help (-h) # Show help for this command.
]
# Show the download cache
export extern "scoop cache show" [
...?apps: string@scoopInstalledAppsWithStar # apps in question
...apps: string@scoopInstalledAppsWithStar # apps in question
]
# Clear the download cache
export extern "scoop cache rm" [
...?apps: string@scoopInstalledAppsWithStar # apps in question
--all(-a) # Clear all apps (alternative to '*')
...apps: string@scoopInstalledAppsWithStar # apps in question
--all (-a) # Clear all apps (alternative to '*')
]
################################################################
@ -638,11 +635,11 @@ export extern "scoop cache rm" [
# Download apps in the cache folder and verify hashes
export extern "scoop download" [
app?: string@scoopAvailableApps # apps in question
--help(-h) # Show help for this command.
--force(-f) # Force download (overwrite cache)
--no-hash-check(-h) # Skip hash verification (use with caution!)
--no-update-scoop(-u) # Don't update Scoop before downloading if it's outdated
--arch(-a): string@scoopArches # Use the specified architecture, if the app supports it
--help (-h) # Show help for this command.
--force (-f) # Force download (overwrite cache)
--no-hash-check (-h) # Skip hash verification (use with caution!)
--no-update-scoop (-u) # Don't update Scoop before downloading if it's outdated
--arch (-a): string@scoopArches # Use the specified architecture, if the app supports it
]
################################################################
@ -650,14 +647,14 @@ export extern "scoop download" [
################################################################
def scoopKnownBuckets [] {
[ "main", "extras", "versions", "nirsoft", "php", "nerd-fonts", "nonportable", "java", "games", "sysinternals" ]
["main" "extras" "versions" "nirsoft" "php" "nerd-fonts" "nonportable" "java" "games" "sysinternals"]
}
def scoopInstalledBuckets [] {
let bucketsDir = if ('SCOOP' in $env) {
[ $env.SCOOP, 'buckets' ] | path join
[$env.SCOOP 'buckets'] | path join
} else {
[ $env.USERPROFILE, 'scoop', 'buckets' ] | path join
[$env.USERPROFILE 'scoop' 'buckets'] | path join
}
let buckets = (ls $bucketsDir | get name | path basename)
@ -665,7 +662,7 @@ def scoopInstalledBuckets [] {
}
def scoopAvailableBuckets [] {
let known = (scoopKnownBuckets)
let known = (scoopKnownBuckets)
let installed = (scoopInstalledBuckets)
$known | where $it not-in $installed
@ -673,30 +670,30 @@ def scoopAvailableBuckets [] {
# Add, list or remove buckets.
export extern "scoop bucket" [
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
# add a bucket
export extern "scoop bucket add" [
name: string@scoopAvailableBuckets # name of the bucket
repo?: string # url of git repo
--help(-h) # Show help for this command.
name: string@scoopAvailableBuckets # name of the bucket
repo?: string # url of git repo
--help (-h) # Show help for this command.
]
# list installed buckets
export extern "scoop bucket list" [
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
# list known buckets
export extern "scoop bucket known" [
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
# remove installed buckets
export extern "scoop bucket rm" [
name: string@scoopInstalledBuckets # bucket to be removed
--help(-h) # Show help for this command.
--help (-h) # Show help for this command.
]
################################################################
@ -706,10 +703,10 @@ export extern "scoop bucket rm" [
# Look for app's hash or url on virustotal.com
export extern "scoop virustotal" [
...apps: string@scoopInstalledAppsWithStar # app to be scanned
--all(-a) # Check for all installed apps
--scan(-s) # Send download URL for analysis (and future retrieval).
--no-depends(-n) # By default, all dependencies are checked too. This flag avoids it.
--no-update-scoop(-u) # Don't update Scoop before checking if it's outdated
--passthru(-p) # Return reports as objects
--help(-h) # Show help for this command.
--all (-a) # Check for all installed apps
--scan (-s) # Send download URL for analysis (and future retrieval).
--no-depends (-n) # By default, all dependencies are checked too. This flag avoids it.
--no-update-scoop (-u) # Don't update Scoop before checking if it's outdated
--passthru (-p) # Return reports as objects
--help (-h) # Show help for this command.
]