Files
dotfiles/dot_config/nushell/nu_scripts/custom-completions/auto-generate/completions/apt-mark.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

47 lines
607 B
Nu

# Display help and exit
extern "apt-mark" [
...args
]
# Mark a package as automatically installed
extern "apt-mark auto" [
...args
]
# Mark a package as manually installed
extern "apt-mark manual" [
...args
]
# Hold a package, prevent automatic installation or removal
extern "apt-mark hold" [
...args
]
# Cancel a hold on a package
extern "apt-mark unhold" [
...args
]
# Show automatically installed packages
extern "apt-mark showauto" [
...args
]
# Show manually installed packages
extern "apt-mark showmanual" [
...args
]
# Show held packages
extern "apt-mark showhold" [
...args
]