mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-25 19:25:06 +00:00
change indent + spaces
This commit is contained in:
parent
8463a4f292
commit
321b7c5ae7
1 changed files with 23 additions and 23 deletions
|
@ -34,20 +34,20 @@ complete -c btrbk -l pretty -d 'Print pretty table output with lower
|
|||
complete -c btrbk -l raw -d 'Create raw targets for archive command'
|
||||
|
||||
# subcommands
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a run -d 'Run snapshot and backup operations'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a dryrun -d 'Show what would be executed without running btrfs commands'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a snapshot -d 'Run snapshot operations only'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a resume -d 'Run backup operations and delete snapshots'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a prune -d 'Only delete snapshots and backups'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a archive -d 'Recursively copy all subvolumes (src -> dst)'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a clean -d 'Delete incomplete (garbled) backups'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a stats -d 'Print snapshot/backup statistics'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a usage -d 'Print filesystem usage'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a ls -d 'List all btrfs subvolumes below a given path'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a origin -d 'Print origin information for a subvolume'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a diff -d 'List file changes between related subvolumes'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a extents -d 'Calculate accurate disk space usage for a path'
|
||||
complete -c btrbk -f -n '__fish_use_subcommand' -a list -d 'List snapshots and backups'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a run -d 'Run snapshot and backup operations'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a dryrun -d 'Show what would be executed without running btrfs commands'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a snapshot -d 'Run snapshot operations only'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a resume -d 'Run backup operations and delete snapshots'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a prune -d 'Only delete snapshots and backups'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a archive -d 'Recursively copy all subvolumes (src -> dst)'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a clean -d 'Delete incomplete (garbled) backups'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a stats -d 'Print snapshot/backup statistics'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a usage -d 'Print filesystem usage'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a ls -d 'List all btrfs subvolumes below a given path'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a origin -d 'Print origin information for a subvolume'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a diff -d 'List file changes between related subvolumes'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a extents -d 'Calculate accurate disk space usage for a path'
|
||||
complete -c btrbk -f -n __fish_use_subcommand -a list -d 'List snapshots and backups'
|
||||
|
||||
# subsubcommands for "list"
|
||||
complete -c btrbk -n '__fish_seen_subcommand_from list' -f -a all -d 'List all snapshots and backups'
|
||||
|
|
Loading…
Reference in a new issue