-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(completions): add sfsu (See #19)
- Loading branch information
Showing
4 changed files
with
179 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"language": [ | ||
"en-US" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e0f0280e-4948-476e-9eb5-c30f01c15a3e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
{ | ||
"root": [ | ||
{ | ||
"name": "search", | ||
"tip": "Search for a package" | ||
}, | ||
{ | ||
"name": "list", | ||
"tip": "List all installed packages" | ||
}, | ||
{ | ||
"name": "hook", | ||
"tip": "Generate hooks for the given shell" | ||
}, | ||
{ | ||
"name": "unused-buckets", | ||
"tip": "Find buckets that do not have any installed packages" | ||
}, | ||
{ | ||
"name": "bucket", | ||
"tip": "Commands for managing buckets" | ||
}, | ||
{ | ||
"name": "describe", | ||
"tip": "Describe a package" | ||
}, | ||
{ | ||
"name": "info", | ||
"tip": "Display information about a package" | ||
}, | ||
{ | ||
"name": "outdated", | ||
"tip": "List outdated buckets and/or packages" | ||
}, | ||
{ | ||
"name": "depends", | ||
"tip": "List the dependencies of a given package, in the order that they will be installed" | ||
}, | ||
{ | ||
"name": "download", | ||
"tip": "Download the specified app" | ||
}, | ||
{ | ||
"name": "status", | ||
"tip": "Show status and check for new app versions" | ||
}, | ||
{ | ||
"name": "update", | ||
"tip": "Update Scoop and Scoop buckets" | ||
}, | ||
{ | ||
"name": "home", | ||
"tip": "Opens the app homepage" | ||
}, | ||
{ | ||
"name": "cat", | ||
"tip": "Show content of specified manifest" | ||
}, | ||
{ | ||
"name": "export", | ||
"tip": "Exports installed apps, buckets (and optionally configs) in JSON format" | ||
}, | ||
{ | ||
"name": "checkup", | ||
"tip": "Check for common issues" | ||
}, | ||
{ | ||
"name": "cache", | ||
"tip": "Show or clear the download cache" | ||
}, | ||
{ | ||
"name": "scan", | ||
"tip": "Scan a file with `VirusTotal`" | ||
}, | ||
{ | ||
"name": "credits", | ||
"tip": "Show credits" | ||
}, | ||
{ | ||
"name": "app", | ||
"tip": "Commands for managing apps" | ||
}, | ||
{ | ||
"name": "help", | ||
"tip": "Print this message or the help of the given subcommand(s)" | ||
} | ||
], | ||
"options": [ | ||
{ | ||
"name": "--version", | ||
"alias": [ | ||
"-V" | ||
], | ||
"tip": "Show the version." | ||
} | ||
], | ||
"common_options": [ | ||
{ | ||
"name": "--no-color", | ||
"tip": [ | ||
"Disable terminal formatting\n", | ||
"[env: NO_COLOR=]" | ||
] | ||
}, | ||
{ | ||
"name": "--json", | ||
"tip": "Print in the raw JSON output, rather than a human readable format" | ||
}, | ||
{ | ||
"name": "-v", | ||
"alias": [ | ||
"--verbose" | ||
], | ||
"tip": "Enable verbose logging" | ||
}, | ||
{ | ||
"name": "--disable-git", | ||
"tip": [ | ||
"Disable using git commands for certain parts of the program.\n", | ||
"Allows sfsu to work entirely if you don't have git installed, but can negatively affect performance.\n", | ||
"[env: DISABLE_GIT=]" | ||
] | ||
}, | ||
{ | ||
"name": "-g", | ||
"alias": [ | ||
"--global" | ||
], | ||
"tip": "Use the global Scoop context" | ||
}, | ||
{ | ||
"name": "-y", | ||
"alias": [ | ||
"--assume-yes" | ||
], | ||
"tip": "Assume \"yes\" as answer to prompts" | ||
}, | ||
{ | ||
"name": "--help", | ||
"alias": [ | ||
"-h" | ||
], | ||
"tip": "Show help." | ||
} | ||
], | ||
"info": { | ||
"completion_info": { | ||
"url": "https://github.com/winpax/sfsu", | ||
"description": "Scoop utilities that can replace the slowest parts of Scoop, and run anywhere from 30-100 times faster" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"root": [], | ||
"options": [ | ||
{ | ||
"name": "--version", | ||
"alias": [ | ||
"-V" | ||
], | ||
"tip": "显示版本信息" | ||
} | ||
], | ||
"common_options": [ | ||
{ | ||
"name": "--help", | ||
"alias": [ | ||
"-h" | ||
], | ||
"tip": "显示帮助信息" | ||
} | ||
] | ||
} |