mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2024-11-01 11:12:32 +00:00
b7d6b1eea7
Co-authored-by: Ajeet D'Souza <98ajeet@gmail.com>
203 lines
4.6 KiB
TypeScript
Generated
203 lines
4.6 KiB
TypeScript
Generated
const completion: Fig.Spec = {
|
|
name: "zoxide",
|
|
description: "A smarter cd command for your terminal",
|
|
subcommands: [
|
|
{
|
|
name: "add",
|
|
description: "Add a new directory or increment its rank",
|
|
options: [
|
|
{
|
|
name: ["-h", "--help"],
|
|
description: "Print help information",
|
|
},
|
|
{
|
|
name: ["-V", "--version"],
|
|
description: "Print version information",
|
|
},
|
|
],
|
|
args: {
|
|
name: "paths",
|
|
isVariadic: true,
|
|
template: "folders",
|
|
},
|
|
},
|
|
{
|
|
name: "import",
|
|
description: "Import entries from another application",
|
|
options: [
|
|
{
|
|
name: "--from",
|
|
description: "Application to import from",
|
|
isRepeatable: true,
|
|
args: {
|
|
name: "from",
|
|
suggestions: [
|
|
"autojump",
|
|
"z",
|
|
],
|
|
},
|
|
},
|
|
{
|
|
name: "--merge",
|
|
description: "Merge into existing database",
|
|
},
|
|
{
|
|
name: ["-h", "--help"],
|
|
description: "Print help information",
|
|
},
|
|
{
|
|
name: ["-V", "--version"],
|
|
description: "Print version information",
|
|
},
|
|
],
|
|
args: {
|
|
name: "path",
|
|
template: "filepaths",
|
|
},
|
|
},
|
|
{
|
|
name: "init",
|
|
description: "Generate shell configuration",
|
|
options: [
|
|
{
|
|
name: "--cmd",
|
|
description: "Changes the prefix of the `z` and `zi` commands",
|
|
isRepeatable: true,
|
|
args: {
|
|
name: "cmd",
|
|
isOptional: true,
|
|
},
|
|
},
|
|
{
|
|
name: "--hook",
|
|
description: "Changes how often zoxide increments a directory's score",
|
|
isRepeatable: true,
|
|
args: {
|
|
name: "hook",
|
|
isOptional: true,
|
|
suggestions: [
|
|
"none",
|
|
"prompt",
|
|
"pwd",
|
|
],
|
|
},
|
|
},
|
|
{
|
|
name: "--no-cmd",
|
|
description: "Prevents zoxide from defining the `z` and `zi` commands",
|
|
},
|
|
{
|
|
name: ["-h", "--help"],
|
|
description: "Print help information",
|
|
},
|
|
{
|
|
name: ["-V", "--version"],
|
|
description: "Print version information",
|
|
},
|
|
],
|
|
args: {
|
|
name: "shell",
|
|
suggestions: [
|
|
"bash",
|
|
"elvish",
|
|
"fish",
|
|
"nushell",
|
|
"posix",
|
|
"powershell",
|
|
"xonsh",
|
|
"zsh",
|
|
],
|
|
},
|
|
},
|
|
{
|
|
name: "query",
|
|
description: "Search for a directory in the database",
|
|
options: [
|
|
{
|
|
name: "--exclude",
|
|
description: "Exclude a path from results",
|
|
isRepeatable: true,
|
|
args: {
|
|
name: "exclude",
|
|
isOptional: true,
|
|
template: "folders",
|
|
},
|
|
},
|
|
{
|
|
name: "--all",
|
|
description: "Show deleted directories",
|
|
},
|
|
{
|
|
name: ["-i", "--interactive"],
|
|
description: "Use interactive selection",
|
|
exclusiveOn: [
|
|
"-l",
|
|
"--list",
|
|
],
|
|
},
|
|
{
|
|
name: ["-l", "--list"],
|
|
description: "List all matching directories",
|
|
exclusiveOn: [
|
|
"-i",
|
|
"--interactive",
|
|
],
|
|
},
|
|
{
|
|
name: ["-s", "--score"],
|
|
description: "Print score with results",
|
|
},
|
|
{
|
|
name: ["-h", "--help"],
|
|
description: "Print help information",
|
|
},
|
|
{
|
|
name: ["-V", "--version"],
|
|
description: "Print version information",
|
|
},
|
|
],
|
|
args: {
|
|
name: "keywords",
|
|
isVariadic: true,
|
|
isOptional: true,
|
|
},
|
|
},
|
|
{
|
|
name: "remove",
|
|
description: "Remove a directory from the database",
|
|
options: [
|
|
{
|
|
name: ["-i", "--interactive"],
|
|
description: "Use interactive selection",
|
|
},
|
|
{
|
|
name: ["-h", "--help"],
|
|
description: "Print help information",
|
|
},
|
|
{
|
|
name: ["-V", "--version"],
|
|
description: "Print version information",
|
|
},
|
|
],
|
|
args: {
|
|
name: "paths",
|
|
isVariadic: true,
|
|
isOptional: true,
|
|
template: "folders",
|
|
},
|
|
},
|
|
],
|
|
options: [
|
|
{
|
|
name: ["-h", "--help"],
|
|
description: "Print help information",
|
|
},
|
|
{
|
|
name: ["-V", "--version"],
|
|
description: "Print version information",
|
|
},
|
|
],
|
|
};
|
|
|
|
export default completion;
|