Files
nushell/tests/fixtures/completions/custom_completion.nu
2022-05-14 15:09:41 -05:00

3 lines
100 B
Plaintext

def animals [] { ["cat", "dog", "eel" ] }
def my-command [animal: string@animals] { print $animal }