19 lines
561 B
Bash
19 lines
561 B
Bash
_nostril_autocomplete() {
|
|
_arguments \
|
|
'--content[Specify content]:string' \
|
|
'--dm[Specify hex pubkey]:' \
|
|
'--envelope[Enable envelope flag]' \
|
|
'--kind[Specify number]:' \
|
|
'--created-at[Specify Unix timestamp]:' \
|
|
'--sec[Specify hex seckey]:' \
|
|
'--pow[Specify difficulty]:' \
|
|
'--mine-pubkey[Enable mine-pubkey flag]' \
|
|
'--tag[Specify key]:[Specify value]' \
|
|
'-e[Specify event_id]:' \
|
|
'-p[Specify pubkey]:' \
|
|
'-t[Specify hashtag]:'
|
|
}
|
|
|
|
# Register the autocompletion function
|
|
compdef _nostril_autocomplete nostril
|