25 lines
346 B
Plaintext
25 lines
346 B
Plaintext
|
# 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
|
||
|
}
|
||
|
}
|