dotfiles/nushell/config/update.nu

25 lines
346 B
Plaintext
Raw Normal View History

2023-11-13 10:59:32 +01:00
# update completion
def _update_args [] {
[
system
rust
wasm
npm
dotfiles
neovim
check
startup
last-update
postpone
force-unlock
]
}
def u [arg?: string@_update_args] {
if $arg == null {
^update
} else {
^update $arg
}
}