Files
dotfiles/dot_config/nushell/nu_scripts/custom-completions/auto-generate/completions/7z.nu
Cian Hughes 896af887ca Changed . token to _dot
This change allows the dotfiles to work with chezmoi (e.g: on windows)
and improves grepability with neovim/telescope
2024-11-07 13:52:17 +00:00

71 lines
514 B
Nu

# Add
extern "7z a" [
...args
]
# Benchmark
extern "7z b" [
...args
]
# Delete
extern "7z d" [
...args
]
# Extract
extern "7z e" [
...args
]
# Hash
extern "7z h" [
...args
]
# Show information about supported formats
extern "7z i" [
...args
]
# List
extern "7z l" [
...args
]
# Rename
extern "7z rn" [
...args
]
# Test
extern "7z t" [
...args
]
# Update
extern "7z u" [
...args
]
# Extract with full paths
extern "7z x" [
...args
]
# Stop switches parsing
extern "7z" [
...args
]